summaryrefslogtreecommitdiff
path: root/examples/albumart.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/albumart.c')
-rw-r--r--examples/albumart.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/albumart.c b/examples/albumart.c
index 51ab400..7fe9077 100644
--- a/examples/albumart.c
+++ b/examples/albumart.c
@@ -34,7 +34,7 @@
#endif
static void usage(void) {
- printf("Usage: albumart -i <fileid/trackid> -n <albumname> -s <storage_id> -p <parent_id> <imagefile>\n");
+ printf("Usage: albumart -d -i <fileid/trackid> -n <albumname> -s <storage_id> -p <parent_id> <imagefile>\n");
exit(0);
}
@@ -58,10 +58,13 @@ int main (int argc, char **argv) {
fprintf(stdout, "libmtp version: " LIBMTP_VERSION_STRING "\n\n");
- while ( (opt = getopt(argc, argv, "hn:i:s:p:")) != -1 ) {
+ while ( (opt = getopt(argc, argv, "dhn:i:s:p:")) != -1 ) {
switch (opt) {
case 'h':
usage();
+ case 'd':
+ LIBMTP_Set_Debug(9);
+ break;
case 'i':
idcount++;
if ((tmp = realloc(ids, sizeof(uint32_t) * (idcount))) == NULL) {