Skip to content

Commit 739aaa7

Browse files
committed
Debug output uses %u not %d
1 parent 463d2f4 commit 739aaa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tea.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ bool encrypt_decrypt(int mode, char *key, int flags,
100100
else
101101
decode ((uint32_t *) d, (uint32_t *) key);
102102

103-
printf("\n%d %d\n",d[0],d[1]);
103+
printf("\n%u %u\n",d[0],d[1]);
104104

105105
// Write back
106106
if ((len = write (outf,d,DATA_SIZE)) < 0){

0 commit comments

Comments
 (0)