aboutsummaryrefslogtreecommitdiffstats
path: root/src/database.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-09 19:17:44 +0200
committerEric Wong <normalperson@yhbt.net>2008-10-11 19:21:51 -0700
commit1d59716731f3ed8569d60ae84c291bd93eb7d582 (patch)
tree6c8e6e5e43190d98264f7c734102af7bb5e4ec96 /src/database.c
parente5c747982adfae06c51b60819ec6a4ef5a34ffe2 (diff)
downloadmpd-1d59716731f3ed8569d60ae84c291bd93eb7d582.tar.gz
mpd-1d59716731f3ed8569d60ae84c291bd93eb7d582.tar.xz
mpd-1d59716731f3ed8569d60ae84c291bd93eb7d582.zip
update: job ID must be positive
The documentation for directory_update_init() was incorrect: a job ID must be positive, not non-negative. If the update queue is full and no job was created, it makes more sense to return 0 instead of -1, because it is more consistent with the return value of isUpdatingDB().
Diffstat (limited to 'src/database.c')
-rw-r--r--src/database.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database.c b/src/database.c
index 3a1667bb6..ea78940f8 100644
--- a/src/database.c
+++ b/src/database.c
@@ -40,7 +40,7 @@ void db_init(void)
{
music_root = directory_new("", NULL);
- if (directory_update_init(NULL) < 0)
+ if (!directory_update_init(NULL))
FATAL("directory update failed\n");
do {