summaryrefslogtreecommitdiffstats
path: root/runtime/list.c
diff options
context:
space:
mode:
authorhunt <hunt>2005-07-01 19:40:50 +0000
committerhunt <hunt>2005-07-01 19:40:50 +0000
commitba36c3ee7f3c807ac07b04bb181a742eae865a60 (patch)
tree1e612d5b70055aa13c84aae40a9e54f349156394 /runtime/list.c
parent07a4738f117eca68c7076ff09b7f93230ab9fedd (diff)
downloadsystemtap-steved-ba36c3ee7f3c807ac07b04bb181a742eae865a60.tar.gz
systemtap-steved-ba36c3ee7f3c807ac07b04bb181a742eae865a60.tar.xz
systemtap-steved-ba36c3ee7f3c807ac07b04bb181a742eae865a60.zip
2005-07-01 Martin Hunt <hunt@redhat.com>
* string.c (_stp_string_init): CAll stp_error() on bad init. * list.c (_stp_list_clear): Call _stp_warn().
Diffstat (limited to 'runtime/list.c')
-rw-r--r--runtime/list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/list.c b/runtime/list.c
index fb5e670b..4643634b 100644
--- a/runtime/list.c
+++ b/runtime/list.c
@@ -70,7 +70,7 @@ void _stp_list_clear(MAP map)
}
if (map->num != 0) {
- _stp_log ("ERROR: list is supposed to be empty (has %d)\n", map->num);
+ _stp_warn ("list is supposed to be empty (has %d)\n", map->num);
}
}