Fix random_line() cutting off text
fgets() wont include the newline
This commit is contained in:
parent
aadee8afba
commit
30a47cf62e
|
@ -114,7 +114,6 @@ random_line (char *file_name)
|
|||
}
|
||||
while (lines > ran);
|
||||
fclose (fh);
|
||||
buf[strlen (buf) - 1] = 0; /* remove the trailing '\n' */
|
||||
return strdup (buf);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue