aboutsummaryrefslogtreecommitdiff
path: root/dlib/dlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'dlib/dlib.c')
-rw-r--r--dlib/dlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dlib/dlib.c b/dlib/dlib.c
index 0f318134..023f869a 100644
--- a/dlib/dlib.c
+++ b/dlib/dlib.c
@@ -850,10 +850,10 @@ char *dGetline (FILE *stream)
dReturn_val_if_fail (stream, 0);
dstr = dStr_sized_new(64);
- while((ch = fgetc(stream)) != EOF) {
+ while ((ch = fgetc(stream)) != EOF) {
if (ch == '\\') {
/* continue with the next line */
- while((ch = fgetc(stream)) != EOF && ch != '\n');
+ while ((ch = fgetc(stream)) != EOF && ch != '\n') ;
continue;
}
dStr_append_c(dstr, ch);