]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
missing backslash.
authorBruce Momjian <bruce@momjian.us>
Fri, 5 Sep 1997 16:31:48 +0000 (16:31 +0000)
committerBruce Momjian <bruce@momjian.us>
Fri, 5 Sep 1997 16:31:48 +0000 (16:31 +0000)
contrib/pginterface/pgwordcount.c

index 437f64a064a8a2cfa77aa5ad5d62d78d95166446..f2d2d488fcfb5e960b830d29254b92838394dc7f 100644 (file)
@@ -60,7 +60,7 @@ int main(int argc, char **argv)
                else
                        sprintf(query,"\
                                UPDATE words \
-                               SET matches = matches + 1
+                               SET matches = matches + 1 \
                                WHERE word = '%s'",     line);
                doquery(query);
                row++;