Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 35be730

Browse files
committed
Cleanup of varchar.
1 parent c098f30 commit 35be730

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/utils/adt/varchar.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/utils/adt/varchar.c,v 1.19 1998/01/08 03:05:01 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/utils/adt/varchar.c,v 1.20 1998/01/08 03:15:06 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -132,7 +132,7 @@ varcharin(char *s, int dummy, int typlen)
132132
if (s == NULL)
133133
return ((char *) NULL);
134134

135-
if (typelen == -1) /* we will remove this soon to make compact storage */
135+
if (typlen == -1) /* we will remove this soon to make compact storage */
136136
/* change varcharlen at the same time to use VARSIZE */
137137
len = strlen(s) + VARHDRSZ;
138138
/* if (typlen != -1 && len > typlen) */

0 commit comments

Comments
 (0)