summaryrefslogtreecommitdiff
path: root/unix.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2004-12-02 22:53:07 +0000
committertron <tron@openttd.org>2004-12-02 22:53:07 +0000
commit265ac671831f4ba9f79a69e94e0dd527d9a7a132 (patch)
tree822a14c0bf1d92e45c85d4ce62bc58b7b6cef6c7 /unix.c
parent0f5793ffa06572f1c2e2efc47d36e8ff92141469 (diff)
downloadopenttd-265ac671831f4ba9f79a69e94e0dd527d9a7a132.tar.xz
(svn r901) Small step in the process to clean up the DPARAM mess:
- reduce to 2 sizes (*DParam64 for 64bit values, *DParam for the rest) - use inline functions instead of macros - add assert()s to check for buffer overruns
Diffstat (limited to 'unix.c')
-rw-r--r--unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix.c b/unix.c
index c29008129..0704022ac 100644
--- a/unix.c
+++ b/unix.c
@@ -299,14 +299,14 @@ StringID FiosGetDescText(const char **path)
if (statvfs(*path, &s) == 0)
{
uint64 tot = (uint64)s.f_bsize * s.f_bavail;
- SET_DPARAM32(0, (uint32)(tot >> 20));
+ SetDParam(0, (uint32)(tot >> 20));
return STR_4005_BYTES_FREE;
}
else
return STR_4006_UNABLE_TO_READ_DRIVE;
}
#else
- SET_DPARAM32(0, 0);
+ SetDParam(0, 0);
return STR_4005_BYTES_FREE;
#endif
}