# HG changeset patch # User Matti Hamalainen # Date 1212596680 -10800 # Node ID 0a2255b9e80b36db5416bfea3149093b7fd9231f # Parent e5119c001bb485dc7e5f65513f381f10ea34ed2a Fix help messages in audtool to have correct tuple field names... this should be done better, though. diff -r e5119c001bb4 -r 0a2255b9e80b src/audtool/audtool_handlers_playlist.c --- a/src/audtool/audtool_handlers_playlist.c Wed Jun 04 19:09:27 2008 +0300 +++ b/src/audtool/audtool_handlers_playlist.c Wed Jun 04 19:24:40 2008 +0300 @@ -381,8 +381,8 @@ audtool_whine("invalid parameters for %s.", argv[0]); audtool_whine("syntax: %s ", argv[0]); audtool_whine(" - fieldname example choices include but are not limited to:"); - audtool_whine(" artist, album, title, track_number, year, date,"); - audtool_whine(" genre, comment, file_name, file_ext, file_path,"); + audtool_whine(" artist, album, title, track-number, year, date,"); + audtool_whine(" genre, comment, file-name, file-ext, file-path,"); audtool_whine(" length, formatter, custom, mtime"); exit(1); } diff -r e5119c001bb4 -r 0a2255b9e80b src/audtool/audtool_handlers_vitals.c --- a/src/audtool/audtool_handlers_vitals.c Wed Jun 04 19:09:27 2008 +0300 +++ b/src/audtool/audtool_handlers_vitals.c Wed Jun 04 19:24:40 2008 +0300 @@ -168,8 +168,8 @@ audtool_whine("invalid parameters for %s.", argv[0]); audtool_whine("syntax: %s ", argv[0]); audtool_whine(" - fieldname example choices include but are not limited to:"); - audtool_whine(" artist, album, title, track_number, year, date,"); - audtool_whine(" genre, comment, file_name, file_ext, file_path,"); + audtool_whine(" artist, album, title, track-number, year, date,"); + audtool_whine(" genre, comment, file-name, file-ext, file-path,"); audtool_whine(" length, formatter, custom, mtime"); exit(1); }