Skip to content

Commit

Permalink
Forgot to remove printf() call
Browse files Browse the repository at this point in the history
  • Loading branch information
axelsteiner committed Nov 17, 2014
1 parent e49a1b4 commit b73c9a9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/cmime_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,8 @@ CMimeInfo_T *cmime_util_info_get_from_string(const char *s) {
mi = _split_combined_info(combined);
} else {
mi = cmime_util_info_new();
mi->combined = strdup(combined);

mi->combined = strdup(combined);
}
printf("MI: [%s] [%s] [%s]\n",mi->combined, mi->mime_type, mi->mime_encoding);
free(combined);
}

Expand Down

0 comments on commit b73c9a9

Please sign in to comment.