Mercurial > audlegacy
changeset 2534:c3d5ac206052 trunk
[svn] - fix a typo
author | nenolod |
---|---|
date | Fri, 16 Feb 2007 18:28:07 -0800 |
parents | ab335d4391df |
children | 97a305e550cf |
files | ChangeLog src/audacious/build_stamp.c src/audacious/vfs.c |
diffstat | 3 files changed, 10 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Fri Feb 16 18:27:31 2007 -0800 +++ b/ChangeLog Fri Feb 16 18:28:07 2007 -0800 @@ -1,3 +1,11 @@ +2007-02-17 02:27:31 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [4076] + - don't return a bogus vtable for an unregistered URI scheme + + trunk/src/audacious/vfs.c | 7 +++++-- + 1 file changed, 5 insertions(+), 2 deletions(-) + + 2007-02-16 12:21:17 +0000 Yoshiki Yazawa <yaz@cc.rim.or.jp> revision [4074] - include stdio.h for debug print out.
--- a/src/audacious/build_stamp.c Fri Feb 16 18:27:31 2007 -0800 +++ b/src/audacious/build_stamp.c Fri Feb 16 18:28:07 2007 -0800 @@ -1,2 +1,2 @@ #include <glib.h> -const gchar *svn_stamp = "20070216-4074"; +const gchar *svn_stamp = "20070217-4076";
--- a/src/audacious/vfs.c Fri Feb 16 18:27:31 2007 -0800 +++ b/src/audacious/vfs.c Fri Feb 16 18:28:07 2007 -0800 @@ -75,7 +75,7 @@ for (node = vfs_transports; node != NULL; node = g_list_next(node)) { - VFSConstruct *vtptr = (VFSConstructor *) node->data; + VFSConstructor *vtptr = (VFSConstructor *) node->data; if (!strncasecmp(decpath, vtptr->uri_id, strlen(vtptr->uri_id))) {