|
From: Dirk M. <mu...@kd...> - 2003-12-07 23:12:35
|
CVS commit by mueller:
fix stupid typo
M +2 -2 vg_syscalls.c 1.40.2.12
--- valgrind/coregrind/vg_syscalls.c #1.40.2.11:1.40.2.12
@@ -2390,5 +2390,5 @@ void VG_(perform_assumed_nonblocking_sys
arg3, sizeof(struct rtc_time));
KERNEL_DO_SYSCALL(tid,res);
- if (!VG_(is_kerror) && res == 0)
+ if (!VG_(is_kerror)(res) && res == 0)
VG_TRACK( post_mem_write,arg3, sizeof(struct rtc_time));
break;
@@ -2402,5 +2402,5 @@ void VG_(perform_assumed_nonblocking_sys
sizeof(unsigned long));
KERNEL_DO_SYSCALL(tid,res);
- if(!VG_(is_kerror) && res == 0)
+ if(!VG_(is_kerror)(res) && res == 0)
VG_TRACK( post_mem_write,arg3, sizeof(unsigned long));
break;
|