diff options
author | Fujii Masao <fujii@postgresql.org> | 2025-08-06 22:52:13 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2025-08-06 22:52:13 +0900 |
commit | 99139c46cbf2bda7880592c4e5da1ebf177888ac (patch) | |
tree | 4a7c3a997ea19c82978cf914000b5f5cf130c5eb /src/interfaces/ecpg/compatlib/informix.c | |
parent | 5761d991c98471b7dab3147b71f9caf00a6f8ce4 (diff) |
Fix typo in comment.
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
Diffstat (limited to 'src/interfaces/ecpg/compatlib/informix.c')
-rw-r--r-- | src/interfaces/ecpg/compatlib/informix.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/compatlib/informix.c b/src/interfaces/ecpg/compatlib/informix.c index e829d722f22..ca11a81f1bc 100644 --- a/src/interfaces/ecpg/compatlib/informix.c +++ b/src/interfaces/ecpg/compatlib/informix.c @@ -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 */ |