diff options
author | Guido van Rossum <guido@python.org> | 1996-12-05 23:43:35 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-05 23:43:35 +0000 |
commit | a376cc5cc86c62f912886c4002ed1a9b3b213b88 (patch) | |
tree | d505b439cc8f6aac1ba75374b6652857273274c0 /Modules/dbmmodule.c | |
parent | Add case for 'R' and a little bit of cleanup. Andrew Kuchling. (diff) | |
download | cpython-a376cc5cc86c62f912886c4002ed1a9b3b213b88.tar.gz cpython-a376cc5cc86c62f912886c4002ed1a9b3b213b88.tar.bz2 cpython-a376cc5cc86c62f912886c4002ed1a9b3b213b88.zip |
Keep gcc -Wall happy.
Diffstat (limited to 'Modules/dbmmodule.c')
-rw-r--r-- | Modules/dbmmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/dbmmodule.c b/Modules/dbmmodule.c index 85934f2ebfd..26449c2bef7 100644 --- a/Modules/dbmmodule.c +++ b/Modules/dbmmodule.c @@ -105,7 +105,6 @@ dbm_subscript(dp, key) dbmobject *dp; register object *key; { - object *v; datum drec, krec; if (!getargs(key, "s#", &krec.dptr, &krec.dsize) ) |