Add format string to printf in client.c
This commit is contained in:
parent
bbbb3633a7
commit
3059747c35
1 changed files with 1 additions and 1 deletions
2
client.c
2
client.c
|
@ -127,7 +127,7 @@ read_line(void)
|
||||||
}
|
}
|
||||||
return( line );
|
return( line );
|
||||||
#else
|
#else
|
||||||
printf(prompt);
|
printf("%s", prompt);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
if (fgets(line, sizeof(line), stdin)) {
|
if (fgets(line, sizeof(line), stdin)) {
|
||||||
|
|
Loading…
Reference in a new issue