Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-02-07 19:52:33 +0300
committerFelix Fietkau <nbd@openwrt.org>2011-02-07 19:52:33 +0300
commite44dbfb1029829dbd6c5e1ca11e461d9a89027b9 (patch)
treea0a7509b917c37fbac227db00b534da9f0a9f9cb /uloop.c
parentdb19e64c1a8149a4240f4029fad9c6da6e3aad3f (diff)
uloop: make first_timeout static
Diffstat (limited to 'uloop.c')
-rw-r--r--uloop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uloop.c b/uloop.c
index e9f8d52..568dcd6 100644
--- a/uloop.c
+++ b/uloop.c
@@ -46,7 +46,7 @@
#endif
#define ULOOP_MAX_EVENTS 10
-struct uloop_timeout *first_timeout;
+static struct uloop_timeout *first_timeout;
static int poll_fd;
bool uloop_cancelled = false;