fs_cli: comply with -Wwrite-strings

This commit is contained in:
Travis Cross 2011-09-26 21:56:57 +00:00
parent 8056125077
commit 02481cabbf
1 changed files with 1 additions and 1 deletions

View File

@ -575,7 +575,7 @@ static int stdout_writable(void)
#endif
}
static int write_str(char *s) {
static int write_str(const char *s) {
int n, left = strlen(s);
while (1) {
n = write(STDOUT_FILENO, s, left);