Mercurial > audlegacy
changeset 2655:46278877a39b trunk
[svn] - fixed c++ish declaration in a c file (part 2)
author | giacomo |
---|---|
date | Sat, 07 Apr 2007 04:56:27 -0700 |
parents | 6364a4534889 |
children | f6c8622ef240 |
files | ChangeLog src/audacious/build_stamp.c src/audacious/controlsocket.c |
diffstat | 3 files changed, 10 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sat Apr 07 04:36:14 2007 -0700 +++ b/ChangeLog Sat Apr 07 04:56:27 2007 -0700 @@ -1,3 +1,10 @@ +2007-04-07 11:36:14 +0000 Giacomo Lozito <james@develia.org> + revision [4334] + - fixed c++ish declaration in a c file + trunk/src/audacious/widgets/skin.c | 6 ++++-- + 1 file changed, 4 insertions(+), 2 deletions(-) + + 2007-04-06 00:16:09 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [4332] - fix crashes related to alt+click enqueue
--- a/src/audacious/build_stamp.c Sat Apr 07 04:36:14 2007 -0700 +++ b/src/audacious/build_stamp.c Sat Apr 07 04:56:27 2007 -0700 @@ -1,2 +1,2 @@ #include <glib.h> -const gchar *svn_stamp = "20070406-4332"; +const gchar *svn_stamp = "20070407-4334";
--- a/src/audacious/controlsocket.c Sat Apr 07 04:36:14 2007 -0700 +++ b/src/audacious/controlsocket.c Sat Apr 07 04:56:27 2007 -0700 @@ -566,8 +566,9 @@ if (pkt->data) { gint pos = *(gint *) pkt->data; gchar *ptr = pkt->data; + TitleInput *tuple; ptr += sizeof(gint); - TitleInput *tuple = playlist_get_tuple(playlist_get_active(), pos); + tuple = playlist_get_tuple(playlist_get_active(), pos); if (!tuple) { ctrl_ack_packet(pkt); break;