summaryrefslogtreecommitdiffstats
path: root/hack/extern.h
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>2009-01-18 00:24:29 +0000
committerlukem <lukem@NetBSD.org>2009-01-18 00:24:29 +0000
commitbbaddd455190c6e1fff13f67b55db4bc5018a05a (patch)
treeb46e05c07b6efd2bc9dc490ca721378687c14d6f /hack/extern.h
parentd306d8ad357a5ceda8627e0852bcf3fb609cbd1b (diff)
downloadbsdgames-darwin-bbaddd455190c6e1fff13f67b55db4bc5018a05a.tar.gz
bsdgames-darwin-bbaddd455190c6e1fff13f67b55db4bc5018a05a.tar.zst
bsdgames-darwin-bbaddd455190c6e1fff13f67b55db4bc5018a05a.zip
fix -Wsign-compare issues
Diffstat (limited to 'hack/extern.h')
-rw-r--r--hack/extern.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hack/extern.h b/hack/extern.h
index 8adb0cbc..ce4dd452 100644
--- a/hack/extern.h
+++ b/hack/extern.h
@@ -1,4 +1,4 @@
-/* $NetBSD: extern.h,v 1.8 2008/04/28 20:22:54 martin Exp $ */
+/* $NetBSD: extern.h,v 1.9 2009/01/18 00:34:03 lukem Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -236,7 +236,7 @@ int dosuspend(void);
/* hack.lev.c */
void savelev(int, xchar);
-void bwrite(int, const void *, unsigned);
+void bwrite(int, const void *, size_t);
void saveobjchn(int, struct obj *);
void savemonchn(int, struct monst *);
void savegoldchn(int, struct gold *);