]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix typo in comment.
authorFujii Masao <fujii@postgresql.org>
Wed, 6 Aug 2025 13:52:13 +0000 (22:52 +0900)
committerFujii Masao <fujii@postgresql.org>
Wed, 6 Aug 2025 13:52:13 +0000 (22:52 +0900)
Author: Chao Li <lic@highgo.com>
Reviewed-by: Fujii Masao <masao.fujii@gmail.com>
Discussion: https://postgr.es/m/CD9B2247-617A-4761-8338-2705C8728E2A@highgo.com

src/interfaces/ecpg/compatlib/informix.c

index e829d722f2228d42faeba1886ee57f789725edc0..ca11a81f1bcfee4d651c3b0db5175ddda23b6ea4 100644 (file)
@@ -807,8 +807,10 @@ rfmtlong(long lng_val, const char *fmt, char *outbuf)
        if (strchr(fmt, (int) '(') && strchr(fmt, (int) ')'))
                brackets_ok = 1;
 
-       /* get position of the right-most dot in the format-string */
-       /* and fill the temp-string wit '0's up to there. */
+       /*
+        * get position of the right-most dot in the format-string and fill the
+        * temp-string with '0's up to there.
+        */
        dotpos = getRightMostDot(fmt);
 
        /* start to parse the format-string */