summaryrefslogtreecommitdiffstats
path: root/loader/win32.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-10-11 12:33:57 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:18:10 +0200
commited8e92afccc1123340c31cffed3dd403408ef032 (patch)
treeb995b42ac9f0206f5b8f7023232ef591826487fc /loader/win32.c
parent2865993869175737a9d5033e46471d6934db2713 (diff)
downloadmpv-ed8e92afccc1123340c31cffed3dd403408ef032.tar.bz2
mpv-ed8e92afccc1123340c31cffed3dd403408ef032.tar.xz
Remove #warning preprocessor directives
The #warning preprocessor directive is non-standard and not available with all compilers. Furthermore, the warnings it causes are noisy and have not led to getting any of the underlying issues fixed in the space of a decade. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32480 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/win32.c')
-rw-r--r--loader/win32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/win32.c b/loader/win32.c
index 1f717c9020..50ca797e8d 100644
--- a/loader/win32.c
+++ b/loader/win32.c
@@ -1735,7 +1735,7 @@ static int WINAPI expLoadStringA(long instance, long id, void* buf, long size)
static long WINAPI expMultiByteToWideChar(long v1, long v2, char* s1, long siz1, short* s2, int siz2)
{
-#warning FIXME
+ /* FIXME */
int i;
int result;
if(s2==0)
@@ -3190,7 +3190,7 @@ static int WINAPI expGetProcessVersion(int pid)
}
static int WINAPI expGetCurrentThread(void)
{
-#warning FIXME!
+ /* FIXME! */
dbgprintf("GetCurrentThread() => %x\n", 0xcfcf9898);
return 0xcfcf9898;
}