Skip to content

Commit cb0658a

Browse files
smowtonDaniel Kroening
authored and
Daniel Kroening
committed
Fix library strcat
1 parent 0340e0f commit cb0658a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ansi-c/library/string.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ inline char *strcat(char *dst, const char *src)
225225
char ch;
226226
do
227227
{
228-
char ch=src[j];
228+
ch=src[j];
229229
dst[i]=ch;
230230
i++;
231231
j++;

0 commit comments

Comments
 (0)