summaryrefslogtreecommitdiffstats
path: root/osdep/timer-linux.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-28 11:25:49 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-28 12:16:13 +0300
commitc693b77e935e7e34e21bafed2df0ff891d0e25ac (patch)
treee78089c8dd189c493fb27634905f59573243b8db /osdep/timer-linux.c
parente5fab9566dbb408ebf651607d5ff58b5ed39453a (diff)
downloadmpv-c693b77e935e7e34e21bafed2df0ff891d0e25ac.tar.bz2
mpv-c693b77e935e7e34e21bafed2df0ff891d0e25ac.tar.xz
osdep: Change timer_name to a saner type
timer_name was a (non-const) pointer to a const char array. Make the symbol the array itself.
Diffstat (limited to 'osdep/timer-linux.c')
-rw-r--r--osdep/timer-linux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/timer-linux.c b/osdep/timer-linux.c
index 579c284019..27e245c850 100644
--- a/osdep/timer-linux.c
+++ b/osdep/timer-linux.c
@@ -9,7 +9,7 @@
#include <sys/time.h>
#include "config.h"
-const char *timer_name =
+const char timer_name[] =
#ifdef HAVE_NANOSLEEP
"nanosleep()";
#else