1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-07-27 07:52:25 +01:00

Fix warning in steal.c

Change boolean -> BOOLEAN_P in function declaration for steal() in
extern.h.
This commit is contained in:
Tung Nguyen 2016-02-29 01:04:34 +11:00
parent 5958fbb8dd
commit 76e8d23bf5

View file

@ -2264,7 +2264,7 @@ E long NDECL(somegold);
#endif
E void FDECL(stealgold, (struct monst *));
E void FDECL(remove_worn_item, (struct obj *,BOOLEAN_P));
E int FDECL(steal, (struct monst *, char *,boolean));
E int FDECL(steal, (struct monst *,char *,BOOLEAN_P));
E int FDECL(mpickobj, (struct monst *,struct obj *));
E void FDECL(stealamulet, (struct monst *));
E void FDECL(stealquestart, (struct monst *));