summaryrefslogtreecommitdiff
path: root/LibC
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-27 12:53:05 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-27 12:53:05 +0100
commit1577217ce13a8e2889f54f5568a98a32573df2e0 (patch)
tree1acb294a424fb3524872bef1d4dfff1e3b2f1e83 /LibC
parent23bb276fcdd6cc3b57e7fc0eae2a614a798cfddf (diff)
downloadserenity-1577217ce13a8e2889f54f5568a98a32573df2e0.zip
LibC: Let's remember that headers are in C.
Diffstat (limited to 'LibC')
-rw-r--r--LibC/stdio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibC/stdio.h b/LibC/stdio.h
index 990559f110..2413f236ba 100644
--- a/LibC/stdio.h
+++ b/LibC/stdio.h
@@ -30,7 +30,7 @@ struct __STDIO_FILE {
char* buffer;
size_t buffer_size;
size_t buffer_index;
- bool have_ungotten;
+ int have_ungotten;
char ungotten;
char default_buffer[BUFSIZ];
};