diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-12-27 21:19:09 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-12-27 21:19:09 +0200 |
commit | 037a82704ce644e2b1c3946345b54444caddb1a5 (patch) | |
tree | d89abc55ac119b86d69c01f819ab8fb22a1382c6 /src/interfaces/ecpg/preproc/variable.c | |
parent | d383c23f6fbc4a79dae66483cf4f7051121008ad (diff) | |
download | postgresql-037a82704ce644e2b1c3946345b54444caddb1a5.tar.gz postgresql-037a82704ce644e2b1c3946345b54444caddb1a5.zip |
Standardize treatment of strcmp() return value
Always compare the return value to 0, don't use cute tricks like
if (!strcmp(...)).
Diffstat (limited to 'src/interfaces/ecpg/preproc/variable.c')
-rw-r--r-- | src/interfaces/ecpg/preproc/variable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/variable.c b/src/interfaces/ecpg/preproc/variable.c index 3ea438709ab..e08e14ac18c 100644 --- a/src/interfaces/ecpg/preproc/variable.c +++ b/src/interfaces/ecpg/preproc/variable.c @@ -491,7 +491,7 @@ get_typedef(char *name) { struct typedefs *this; - for (this = types; this && strcmp(this->name, name); this = this->next); + for (this = types; this && strcmp(this->name, name) != 0; this = this->next); if (!this) mmerror(PARSE_ERROR, ET_FATAL, "unrecognized data type name \"%s\"", name); |