diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-11-28 16:48:37 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-11-28 16:48:37 -0300 |
commit | 3974c4a72459fc07acef3ee1369d63a7b8305b62 (patch) | |
tree | 155f2b6d3d285371e6df5a6b5d46ebebbf448179 /src/interfaces/ecpg/compatlib | |
parent | 8a7e9e9dad56419ff987e5f6baaf411a03c1951a (diff) | |
download | postgresql-3974c4a72459fc07acef3ee1369d63a7b8305b62.tar.gz postgresql-3974c4a72459fc07acef3ee1369d63a7b8305b62.zip |
Remove useless "return;" lines
Discussion: https://postgr.es/m/20191128144653.GA27883@alvherre.pgsql
Diffstat (limited to 'src/interfaces/ecpg/compatlib')
-rw-r--r-- | src/interfaces/ecpg/compatlib/informix.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/compatlib/informix.c b/src/interfaces/ecpg/compatlib/informix.c index d921b974aaf..a7bbeb9223f 100644 --- a/src/interfaces/ecpg/compatlib/informix.c +++ b/src/interfaces/ecpg/compatlib/informix.c @@ -529,7 +529,6 @@ void rtoday(date * d) { PGTYPESdate_today(d); - return; } int @@ -959,7 +958,6 @@ rupshift(char *str) for (; *str != '\0'; str++) if (islower((unsigned char) *str)) *str = toupper((unsigned char) *str); - return; } int |