diff options
author | hunt <hunt> | 2005-09-08 16:42:35 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-09-08 16:42:35 +0000 |
commit | b3f8aec650def4466fb8b89ae53dda7b7f828d63 (patch) | |
tree | ae7a0451e496f46c8fa6534c41b64c4c3a7ae2cc /runtime/map-values.c | |
parent | 798d60a56ae314c9a8fb963913987c964ae0890a (diff) | |
download | systemtap-steved-b3f8aec650def4466fb8b89ae53dda7b7f828d63.tar.gz systemtap-steved-b3f8aec650def4466fb8b89ae53dda7b7f828d63.tar.xz systemtap-steved-b3f8aec650def4466fb8b89ae53dda7b7f828d63.zip |
2005-09-08 Martin Hunt <hunt@redhat.com>
* map-values.c (_stp_map_entry_exists): Remove unused var.
Diffstat (limited to 'runtime/map-values.c')
-rw-r--r-- | runtime/map-values.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/map-values.c b/runtime/map-values.c index 32cfb59d..638b3e23 100644 --- a/runtime/map-values.c +++ b/runtime/map-values.c @@ -53,7 +53,6 @@ void _stp_map_add_int64 (MAP map, int64_t val) unsigned _stp_map_entry_exists (MAP map) { - struct map_node *m; if (map == NULL || map->create || map->key == NULL) return 0; return 1; |