From ac6240896e26dd709dc17298ba093d32860b947f Mon Sep 17 00:00:00 2001 From: Ali Saidi Date: Fri, 10 Feb 2006 14:59:37 -0500 Subject: confused an ifdef with an if --HG-- extra : convert_revision : 5b8e8bdff5813cf8846e66de2652246d77c97e88 --- sim/syscall_emul.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sim/syscall_emul.hh') diff --git a/sim/syscall_emul.hh b/sim/syscall_emul.hh index a10ee297c..f55709575 100644 --- a/sim/syscall_emul.hh +++ b/sim/syscall_emul.hh @@ -444,7 +444,7 @@ fstat64Func(SyscallDesc *desc, int callnum, Process *process, return -EBADF; } -#ifdef BSD_HOST +#if BSD_HOST struct stat hostBuf; int result = fstat(process->sim_fd(fd), &hostBuf); #else @@ -494,7 +494,7 @@ lstat64Func(SyscallDesc *desc, int callnum, Process *process, if (xc->mem->readString(path, xc->getSyscallArg(0)) != No_Fault) return -EFAULT; -#ifdef BSD_HOST +#if BSD_HOST struct stat hostBuf; int result = lstat(path.c_str(), &hostBuf); #else -- cgit v1.2.3