diff options
author | Steven Barth <steven@midlink.org> | 2013-10-14 23:09:34 +0200 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2013-10-14 23:09:34 +0200 |
commit | a9739e68e7697dc833af0473b37a0632f42d107c (patch) | |
tree | 6cf77528e011ddc579777a75d7798f590b4a9581 /src | |
parent | 7ccb1f94756db1c737d978f530276a3ac266f7e8 (diff) |
Fix unsigned / signed conversion
Diffstat (limited to 'src')
-rw-r--r-- | src/ubus.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -334,7 +334,7 @@ bool ubus_has_prefix(const char *name, const char *ifname) continue; struct blob_attr *d; - int drem; + unsigned drem; blobmsg_for_each_attr(d, cur, drem) { return true; } |