diff options
Diffstat (limited to 'src/interfaces/ecpg/compatlib/informix.c')
-rw-r--r-- | src/interfaces/ecpg/compatlib/informix.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/interfaces/ecpg/compatlib/informix.c b/src/interfaces/ecpg/compatlib/informix.c index af185d533b9..3b30864866b 100644 --- a/src/interfaces/ecpg/compatlib/informix.c +++ b/src/interfaces/ecpg/compatlib/informix.c @@ -179,7 +179,7 @@ static char * ecpg_strndup(const char *str, size_t len) { size_t real_len = strlen(str); - int use_len = (int) ((real_len > len) ? len : real_len); + int use_len = (int) ((real_len > len) ? len : real_len); char *new = malloc(use_len + 1); @@ -983,33 +983,33 @@ ldchar(char *src, int len, char *dest) int rgetmsg(int msgnum, char *s, int maxsize) { - (void) msgnum; /* keep the compiler quiet */ - (void) s; /* keep the compiler quiet */ - (void) maxsize; /* keep the compiler quiet */ + (void) msgnum; /* keep the compiler quiet */ + (void) s; /* keep the compiler quiet */ + (void) maxsize; /* keep the compiler quiet */ return 0; } int rtypalign(int offset, int type) { - (void) offset; /* keep the compiler quiet */ - (void) type; /* keep the compiler quiet */ + (void) offset; /* keep the compiler quiet */ + (void) type; /* keep the compiler quiet */ return 0; } int rtypmsize(int type, int len) { - (void) type; /* keep the compiler quiet */ - (void) len; /* keep the compiler quiet */ + (void) type; /* keep the compiler quiet */ + (void) len; /* keep the compiler quiet */ return 0; } int rtypwidth(int sqltype, int sqllen) { - (void) sqltype; /* keep the compiler quiet */ - (void) sqllen; /* keep the compiler quiet */ + (void) sqltype; /* keep the compiler quiet */ + (void) sqllen; /* keep the compiler quiet */ return 0; } |