From: Ali Saidi Date: Fri, 10 Feb 2006 19:59:37 +0000 (-0500) Subject: confused an ifdef with an if X-Git-Tag: m5_2.0_beta1~87^2~107^2~5^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ac6240896e26dd709dc17298ba093d32860b947f;p=gem5.git confused an ifdef with an if --HG-- extra : convert_revision : 5b8e8bdff5813cf8846e66de2652246d77c97e88 --- 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