diff options
author | marcel <marcel@FreeBSD.org> | 1999-11-16 10:26:38 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-11-16 10:26:38 +0000 |
commit | 520fff788fc8f2154247a6cff986abf634fdbb51 (patch) | |
tree | 839b85661e38597650d090e9cb482291451611bb /games/hack/hack.apply.c | |
parent | 44fac3a89d25ca434f91c4f961a363ea590faae8 (diff) | |
download | FreeBSD-src-520fff788fc8f2154247a6cff986abf634fdbb51.zip FreeBSD-src-520fff788fc8f2154247a6cff986abf634fdbb51.tar.gz |
Add type int to those variables without a type. This is caused by the
frequent use of ``register var'' instead of ``register int var'' and
the removal of the register hint in the previous commit.
Diffstat (limited to 'games/hack/hack.apply.c')
-rw-r--r-- | games/hack/hack.apply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/hack/hack.apply.c b/games/hack/hack.apply.c index 12fb470..fa939d6 100644 --- a/games/hack/hack.apply.c +++ b/games/hack/hack.apply.c @@ -242,7 +242,7 @@ static boolean dig_down; static dig() { struct rm *lev; - dpx = dig_pos.x, dpy = dig_pos.y; + int dpx = dig_pos.x, dpy = dig_pos.y; /* perhaps a nymph stole his pick-axe while he was busy digging */ /* or perhaps he teleported away */ |