changeset 2550:864c12eafb49 trunk

[svn] - mtime should be initialized to -1, otherwise 0 will be recorded for not yet scanned entries. it means static and will suppress on-demand scanning.
author yaz
date Mon, 19 Feb 2007 00:16:28 -0800
parents ef59b072a5d2
children cea3528b2996
files ChangeLog src/audacious/build_stamp.c src/audacious/titlestring.c
diffstat 3 files changed, 10 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Feb 18 22:33:03 2007 -0800
+++ b/ChangeLog	Mon Feb 19 00:16:28 2007 -0800
@@ -1,3 +1,11 @@
+2007-02-19 06:33:03 +0000  Yoshiki Yazawa <yaz@cc.rim.or.jp>
+  revision [4108]
+  - update playlist->tail when an entry has been removed.
+  
+  trunk/src/audacious/playlist.c |    2 ++
+  1 file changed, 2 insertions(+)
+
+
 2007-02-19 04:42:53 +0000  Yoshiki Yazawa <yaz@cc.rim.or.jp>
   revision [4106]
   - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
--- a/src/audacious/build_stamp.c	Sun Feb 18 22:33:03 2007 -0800
+++ b/src/audacious/build_stamp.c	Mon Feb 19 00:16:28 2007 -0800
@@ -1,2 +1,2 @@
 #include <glib.h>
-const gchar *svn_stamp = "20070219-4106";
+const gchar *svn_stamp = "20070219-4108";
--- a/src/audacious/titlestring.c	Sun Feb 18 22:33:03 2007 -0800
+++ b/src/audacious/titlestring.c	Mon Feb 19 00:16:28 2007 -0800
@@ -53,6 +53,7 @@
     input = g_new0(BmpTitleInput, 1);
     input->__size = XMMS_TITLEINPUT_SIZE;
     input->__version = XMMS_TITLEINPUT_VERSION;
+    input->mtime = -1;
     return input;
 }