summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2015-07-19 18:36:29 +1000
committerDamien Zammit <damien@zamaudio.com>2015-07-19 18:36:29 +1000
commit453d6061ca80d64583e5f5a30bc9a1c443a3c5ea (patch)
tree7b588565cec3f061093c4f7bea8b967fdb069039
parent012b8fd6eff1d1b0a9148da17b793c1deb1b82f2 (diff)
Fix typo with signedness
Signed-off-by: Damien Zammit <damien@zamaudio.com>
-rw-r--r--ptparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ptparse.c b/ptparse.c
index 49ebf9d..2d29b9e 100644
--- a/ptparse.c
+++ b/ptparse.c
@@ -140,7 +140,7 @@ int main(int argc, char** argv) {
break;
}
//printf("%s sampleoffset = %04x = %d\n", name, offset, offset);
- printf("%s\t%d\n", name, offset);
+ printf("%s\t%u\n", name, offset);
}
}
}