diff options
author | Ralf Habacker <ralf.habacker@freenet.de> | 2010-06-07 15:46:33 +0200 |
---|---|---|
committer | Ralf Habacker <ralf.habacker@freenet.de> | 2010-06-07 15:46:33 +0200 |
commit | cd815c347a279f324e5025fcda71a16ad9b08c7d (patch) | |
tree | d924d033cc1dcd3a37e7d3e1bf79fe93640bead2 /tools | |
parent | 8891d51be1a8f469b479e32d9337c59fa467d181 (diff) |
Fixed compiler warnings.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dbus-print-message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dbus-print-message.c b/tools/dbus-print-message.c index 0b8ca267..75d00aca 100644 --- a/tools/dbus-print-message.c +++ b/tools/dbus-print-message.c @@ -56,7 +56,7 @@ indent (int depth) static void print_hex (unsigned char *bytes, unsigned int len, int depth) { - int i, columns; + unsigned int i, columns; printf ("array of bytes [\n"); |