Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(772)

Unified Diff: src/lib9p/srv.c

Issue 6744054: code review 6744054: fix clang warnings reported by Tuncer Ayaz (Closed)
Patch Set: diff -r d9cdc1795924 https://code.google.com/p/plan9port Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/lib9/zoneinfo.c ('k') | src/libdiskfs/venti.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lib9p/srv.c
===================================================================
--- a/src/lib9p/srv.c
+++ b/src/lib9p/srv.c
@@ -471,7 +471,7 @@
respond(r, Eunknownfid);
return;
}
- if(r->ifcall.count < 0){
+ if((int32)r->ifcall.count < 0){
respond(r, Ebotch);
return;
}
@@ -518,7 +518,7 @@
respond(r, Eunknownfid);
return;
}
- if(r->ifcall.count < 0){
+ if((int32)r->ifcall.count < 0){
respond(r, Ebotch);
return;
}
« no previous file with comments | « src/lib9/zoneinfo.c ('k') | src/libdiskfs/venti.c » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b