File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 2
2
/* -----------------------------------------------------------------------
3
3
* ascii.c
4
4
*
5
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/ascii.c,v 1.3 2000/08/05 14:59:17 momjian Exp $
5
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/ascii.c,v 1.4 2000/08/26 21:56:23 tgl Exp $
6
6
*
7
7
* Portions Copyright (c) 1999-2000, PostgreSQL, Inc
8
8
*
@@ -38,18 +38,21 @@ Datum
38
38
to_ascii_encname (PG_FUNCTION_ARGS )
39
39
{
40
40
multibyte_error ();
41
+ return 0 ; /* keep compiler quiet */
41
42
}
42
43
43
44
Datum
44
45
to_ascii_enc (PG_FUNCTION_ARGS )
45
46
{
46
47
multibyte_error ();
48
+ return 0 ; /* keep compiler quiet */
47
49
}
48
50
49
51
Datum
50
52
to_ascii_default (PG_FUNCTION_ARGS )
51
53
{
52
54
multibyte_error ();
55
+ return 0 ; /* keep compiler quiet */
53
56
}
54
57
55
58
@@ -198,4 +201,4 @@ to_ascii_default(PG_FUNCTION_ARGS)
198
201
);
199
202
}
200
203
201
- #endif /* MULTIBYTE */
204
+ #endif /* MULTIBYTE */
You can’t perform that action at this time.
0 commit comments