diff options
Diffstat (limited to 'contrib/fuzzystrmatch/fuzzystrmatch.c')
-rw-r--r-- | contrib/fuzzystrmatch/fuzzystrmatch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/fuzzystrmatch/fuzzystrmatch.c b/contrib/fuzzystrmatch/fuzzystrmatch.c index a04251ace61..5659cc71ace 100644 --- a/contrib/fuzzystrmatch/fuzzystrmatch.c +++ b/contrib/fuzzystrmatch/fuzzystrmatch.c @@ -724,8 +724,8 @@ _soundex(const char *instr, char *outstr) { int count; - AssertArg(instr); - AssertArg(outstr); + Assert(instr); + Assert(outstr); outstr[SOUNDEX_LEN] = '\0'; |