diff options
author | Max Kellermann <max@duempel.org> | 2012-06-12 22:29:04 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-06-12 22:29:04 +0200 |
commit | ae70875f45c6d7f1bb0f703179035709d909978a (patch) | |
tree | 98319b849a72c32b4cdddcee42e070ed6a085c54 /src/ls.c | |
parent | eda7410f4c87e29e0c77950963a7b9ccf7069097 (diff) | |
download | mpd-ae70875f45c6d7f1bb0f703179035709d909978a.tar.gz mpd-ae70875f45c6d7f1bb0f703179035709d909978a.tar.xz mpd-ae70875f45c6d7f1bb0f703179035709d909978a.zip |
cmdline: consistent plugin listings
Diffstat (limited to 'src/ls.c')
-rw-r--r-- | src/ls.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -57,10 +57,10 @@ void print_supported_uri_schemes_to_fp(FILE *fp) const char **prefixes = remoteUrlPrefixes; #ifdef HAVE_UN - fprintf(fp, "file:// "); + fprintf(fp, " file://"); #endif while (*prefixes) { - fprintf(fp, "%s ", *prefixes); + fprintf(fp, " %s", *prefixes); prefixes++; } fprintf(fp,"\n"); |