summaryrefslogtreecommitdiffstats
path: root/osdep/timer.h
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.h
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.h')
-rw-r--r--osdep/timer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/timer.h b/osdep/timer.h
index f0e87a89b7..44e26cdafc 100644
--- a/osdep/timer.h
+++ b/osdep/timer.h
@@ -1,7 +1,7 @@
#ifndef MPLAYER_TIMER_H
#define MPLAYER_TIMER_H
-extern const char *timer_name;
+extern const char timer_name[];
void InitTimer(void);
unsigned int GetTimer(void);