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.
This commit is contained in:
Uoti Urpala
2008-04-28 11:25:49 +03:00
parent e5fab9566d
commit c693b77e93
4 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@
static double relative_time, startup_time;
static double timebase_ratio;
const char *timer_name = "Darwin accurate";
const char timer_name[] = "Darwin accurate";