diff options
Diffstat (limited to 'examples/pathutils.c')
-rw-r--r-- | examples/pathutils.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/pathutils.c b/examples/pathutils.c index d4f365e..63bdbd7 100644 --- a/examples/pathutils.c +++ b/examples/pathutils.c @@ -217,7 +217,7 @@ find_filetype (const char * filename) /* Tagging as unknown file type */ filetype = LIBMTP_FILETYPE_UNKNOWN; } - printf("type:%s,%d\n",ptype,filetype); + printf("type: %s, %d\n", ptype, filetype); return filetype; } @@ -234,4 +234,3 @@ static char *basename(char *in) { return ++p; } #endif - |