aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/cc/cc.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-05-20 12:15:24 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-05-20 12:15:24 -0700
commit57eb0c15a10dfcd9816b84166106a1aa32323325 (patch)
tree7e4060d941dca7060c57153e13b02928e533c187 /sys/cmd/cc/cc.c
parent480611c452e8b4dc18654545e2de4d6dde2d7b4d (diff)
fix: made rune constants unsigned for implicit casting
Diffstat (limited to 'sys/cmd/cc/cc.c')
-rw-r--r--sys/cmd/cc/cc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/cmd/cc/cc.c b/sys/cmd/cc/cc.c
index 2a61e89..6338050 100644
--- a/sys/cmd/cc/cc.c
+++ b/sys/cmd/cc/cc.c
@@ -111,6 +111,8 @@ openio(byte *path)
return nil;
}
+ // TODO: See if we have already loaded the file
+ //
printf("OPENING PATH %s\n", path);
if ((C.io - C.iostk) >= arrlen(C.iostk)-1)