aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-09 19:31:31 +0200
committerEric Wong <normalperson@yhbt.net>2008-10-11 19:21:52 -0700
commit9ae9c1f8cff904cdc2451ddbee88a30e0570d2f5 (patch)
tree92d343440af735207b5c4d956086492eeefeb28c
parent04c4ea74f7d633d262ab2c54751cae29d4995621 (diff)
downloadmpd-9ae9c1f8cff904cdc2451ddbee88a30e0570d2f5.tar.gz
mpd-9ae9c1f8cff904cdc2451ddbee88a30e0570d2f5.tar.xz
mpd-9ae9c1f8cff904cdc2451ddbee88a30e0570d2f5.zip
update: make the variable "progress" static
-rw-r--r--src/update.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/update.c b/src/update.c
index 40f47a26a..f0905b5db 100644
--- a/src/update.c
+++ b/src/update.c
@@ -34,7 +34,7 @@ enum update_return {
UPDATE_RETURN_UPDATED = 1
};
-enum update_progress {
+static enum update_progress {
UPDATE_PROGRESS_IDLE = 0,
UPDATE_PROGRESS_RUNNING = 1,
UPDATE_PROGRESS_DONE = 2