diff options
Diffstat (limited to 'test-details.c')
-rw-r--r-- | test-details.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test-details.c b/test-details.c index 6ccfbe6..420e007 100644 --- a/test-details.c +++ b/test-details.c @@ -24,10 +24,10 @@ main(int argc, char *argv[]) return 1; } - printf("Bus type: %i\n", gamepad.bus_type); - printf("Vendor: %i\n", gamepad.vendor); - printf("Product: %i\n", gamepad.product); - printf("Version: %i\n", gamepad.version); + printf("Bus type: %u\n", gamepad.bus_type); + printf("Vendor: %u\n", gamepad.vendor); + printf("Product: %u\n", gamepad.product); + printf("Version: %u\n", gamepad.version); printf("Name: %s\n", gamepad.name); printf("Unique id: %s\n", gamepad.unique_id); printf("Physical location: %s\n", gamepad.physical_location); |