diff options
author | Russ Cox <rsc@swtch.com> | 2012-10-21 12:04:56 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2012-10-21 12:04:56 -0400 |
commit | c5bfba483f4002c539cbeb4087827524dba8d0f8 (patch) | |
tree | a054fb1030f97f36308240d974057449acebcac3 /src/libhtml | |
parent | b0ae8a46a0e40773d306906dd0fd9b33832e7086 (diff) | |
download | plan9port-c5bfba483f4002c539cbeb4087827524dba8d0f8.tar.gz plan9port-c5bfba483f4002c539cbeb4087827524dba8d0f8.tar.bz2 plan9port-c5bfba483f4002c539cbeb4087827524dba8d0f8.zip |
silence more warnings
R=rsc
http://codereview.appspot.com/6744056
Diffstat (limited to 'src/libhtml')
-rw-r--r-- | src/libhtml/build.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libhtml/build.c b/src/libhtml/build.c index c65918c2..7ce74449 100644 --- a/src/libhtml/build.c +++ b/src/libhtml/build.c @@ -4536,6 +4536,7 @@ validptr(void* p) static char c; c = *((char*)p); + USED(c); return 1; } |