diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-02-17 11:52:39 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-02-17 11:52:39 +0000 |
commit | a845504a5ee6fd7e545f028cf84e1e503da574c1 (patch) | |
tree | f2399e193df14ad3aa0860385513f79368b95b2d /cpuinfo.c | |
parent | e9d5b64a2933d51afb4a1bfb3f07454ef8d4436d (diff) | |
download | mpv-a845504a5ee6fd7e545f028cf84e1e503da574c1.tar.bz2 mpv-a845504a5ee6fd7e545f028cf84e1e503da574c1.tar.xz |
cosmetics: const static --> static const, avoids the debug mode warning:
cpuinfo.c:80: warning: 'static' is not at beginning of declaration
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28632 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cpuinfo.c')
-rw-r--r-- | cpuinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -77,7 +77,7 @@ rdtsc(void) static const char* brandname(int i) { - const static char* brandmap[] = { + static const char* brandmap[] = { NULL, "Intel(R) Celeron(R) processor", "Intel(R) Pentium(R) III processor", |