diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-04-08 15:25:18 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-04-08 15:25:18 +0000 |
commit | c825401760d5ea067b8e4e1b81191c41914bd552 (patch) | |
tree | fee8576288e139f7bae8e9f4884c99f98219006a | |
parent | a061da8fb5224fcdedb1e4965c8ba4b9fdde4413 (diff) | |
download | mpd-c825401760d5ea067b8e4e1b81191c41914bd552.tar.gz mpd-c825401760d5ea067b8e4e1b81191c41914bd552.tar.xz mpd-c825401760d5ea067b8e4e1b81191c41914bd552.zip |
Typo.
git-svn-id: https://svn.musicpd.org/mpd/trunk@5889 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/playlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playlist.c b/src/playlist.c index c6923122e..cb2be91d7 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -1650,7 +1650,7 @@ static void PlaylistLoadIterFunc(int fd, char *temp, char **erroredFile) if (!getSongFromDB(temp) && !isRemoteUrl(temp)) { } else if ((addToPlaylist(STDERR_FILENO, temp, 0)) < 0) { - /* for windows compatibilit, convert slashes */ + /* for windows compatibility, convert slashes */ char *temp2 = xstrdup(temp); char *p = temp2; while (*p) { |