aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/9c2
-rw-r--r--src/cmd/fossil/disk.c10
-rw-r--r--src/libndb/ndbreorder.c2
3 files changed, 8 insertions, 6 deletions
diff --git a/bin/9c b/bin/9c
index 85aa0822..64d5c3a2 100755
--- a/bin/9c
+++ b/bin/9c
@@ -67,6 +67,8 @@ useclang()
-Wno-unused-value \
-Wno-array-bounds \
-Wno-gnu-designator \
+ -Wno-array-bounds \
+ -Wno-unneeded-internal-declaration \
-fsigned-char \
-fno-caret-diagnostics \
"
diff --git a/src/cmd/fossil/disk.c b/src/cmd/fossil/disk.c
index 04ea5cdd..61370dd8 100644
--- a/src/cmd/fossil/disk.c
+++ b/src/cmd/fossil/disk.c
@@ -34,11 +34,11 @@ struct Disk {
/* keep in sync with Part* enum in dat.h */
static char *partname[] = {
- [PartError] "error",
- [PartSuper] "super",
- [PartLabel] "label",
- [PartData] "data",
- [PartVenti] "venti",
+ [PartError] = "error",
+ [PartSuper] = "super",
+ [PartLabel] = "label",
+ [PartData] = "data",
+ [PartVenti] = "venti",
};
Disk *
diff --git a/src/libndb/ndbreorder.c b/src/libndb/ndbreorder.c
index 167d0a0a..390d7818 100644
--- a/src/libndb/ndbreorder.c
+++ b/src/libndb/ndbreorder.c
@@ -38,7 +38,7 @@ ndbreorder(Ndbtuple *t, Ndbtuple *x)
if(x != last->line){
/* find entry before x */
- for(prev = last; prev->line != x; prev = prev->line);
+ for(prev = last; prev->line != x; prev = prev->line)
;
/* detach line */