Skip to content

Commit

Permalink
fix printf format
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkinben committed Oct 22, 2021
1 parent bb8ef26 commit 2ddee57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ int main(int argc, char *argv[])
printf("Execute Error: Duplicate key.\n");
break;
case EXECUTE_NO_SUCH_KEY:
printf("Execute Error: No such key %d\n", statement.row_value.id);
printf("Execute Error: No such key %u\n", statement.row_value.id);
break;
case EXECUTE_TABLE_FULL:
printf("Execute Error: Table full.\n");
Expand Down

0 comments on commit 2ddee57

Please sign in to comment.