Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
matteovescovi committed Aug 4, 2011
1 parent 5cc9fdc commit 03a9572
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/c/presage_c_demo.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ int main()
if (PRESAGE_OK == presage_predict (prsg, &prediction))
{
for (i = 0; prediction[i] != 0; i++)
printf ("prediction[%zu]: %s\n", i, prediction[i]);
printf ("prediction[%d]: %s\n", i, prediction[i]);
presage_free_string_array (prediction);
}

Expand Down Expand Up @@ -102,7 +102,7 @@ int main()
if (PRESAGE_OK == presage_predict (prsg, &prediction))
{
for (i = 0; prediction[i] != 0; i++)
printf ("prediction[%zu]: %s\n", i, prediction[i]);
printf ("prediction[%d]: %s\n", i, prediction[i]);
presage_free_string_array (prediction);
}

Expand Down

0 comments on commit 03a9572

Please sign in to comment.