aboutsummaryrefslogtreecommitdiffstats
path: root/src/update.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-09 19:31:31 +0200
committerMax Kellermann <max@duempel.org>2008-10-09 19:31:31 +0200
commitb8115f2a5fb5c1940f8c186c81b1e31c36c1bd27 (patch)
tree5295f12a9cf448560b7675ac5a7194c874fb3bad /src/update.c
parentda7166bdd2bdbfc017fabfe20e766ece737a5fe4 (diff)
downloadmpd-b8115f2a5fb5c1940f8c186c81b1e31c36c1bd27.tar.gz
mpd-b8115f2a5fb5c1940f8c186c81b1e31c36c1bd27.tar.xz
mpd-b8115f2a5fb5c1940f8c186c81b1e31c36c1bd27.zip
update: make the variable "progress" static
Diffstat (limited to 'src/update.c')
-rw-r--r--src/update.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/update.c b/src/update.c
index c4842f142..de709ce4b 100644
--- a/src/update.c
+++ b/src/update.c
@@ -36,7 +36,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