Skip to content

Commit

Permalink
fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
karlnapf committed Dec 22, 2011
1 parent 0c4c64f commit 2b685fe
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -61,7 +61,7 @@ void check_content_equal(Parameter* save_param, Parameter* load_param)
ASSERT(sm->matrix[i]==lm->matrix[i]);
}

void test_acsii(Parameter* save_param, Parameter* load_param)
void test_ascii(Parameter* save_param, Parameter* load_param)
{
SG_SPRINT("testing ascii serialization\n");
SG_SPRINT("to save:\n");
Expand Down Expand Up @@ -221,7 +221,7 @@ int main(int argc, char **argv)
test_json(sp, lp);

reset_values(sp, lp);
test_acsii(sp, lp);
test_ascii(sp, lp);

/* still leaks memory TODO */
reset_values(sp, lp);
Expand Down

0 comments on commit 2b685fe

Please sign in to comment.