Commit 48bbf11bcb6c5d95a281c025a13836c6fa699feb

Authored by blueswir1
1 parent f7350b47

Fix r4641 (invalid token "=<" in a preprocessor expression)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4859 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
cpu-exec.c
@@ -1359,7 +1359,7 @@ int cpu_signal_handler(int host_signum, void *pinfo, @@ -1359,7 +1359,7 @@ int cpu_signal_handler(int host_signum, void *pinfo,
1359 unsigned long pc; 1359 unsigned long pc;
1360 int is_write; 1360 int is_write;
1361 1361
1362 -#if (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ =< 3)) 1362 +#if (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 3))
1363 pc = uc->uc_mcontext.gregs[R15]; 1363 pc = uc->uc_mcontext.gregs[R15];
1364 #else 1364 #else
1365 pc = uc->uc_mcontext.arm_pc; 1365 pc = uc->uc_mcontext.arm_pc;