summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/ChangeLog2
-rw-r--r--cpukit/libcsupport/src/assocnamebad.c7
2 files changed, 4 insertions, 5 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index aa6e998dd8..ec9db0f642 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,7 @@
2007-03-13 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * libcsupport/src/assocnamebad.c: Remove dead code. Use PRI* macros
+ to fix warnings.
* score/include/rtems/score/stack.h: Use size_t for stack sizes.
* score/include/rtems/score/chain.h, score/src/chain.c:
Change _Chain_Initialize to using size_t.
diff --git a/cpukit/libcsupport/src/assocnamebad.c b/cpukit/libcsupport/src/assocnamebad.c
index d1e7191342..c8f96cc0e6 100644
--- a/cpukit/libcsupport/src/assocnamebad.c
+++ b/cpukit/libcsupport/src/assocnamebad.c
@@ -12,11 +12,8 @@
#include <rtems.h>
#include <rtems/assoc.h>
+#include <inttypes.h>
#include <stdio.h> /* sprintf */
-#include <string.h> /* strcat, strcmp */
-
-#define STREQ(a,b) (strcmp((a), (b)) == 0)
-#define rtems_assoc_is_default(ap) ((ap)->name && STREQ(ap->name, RTEMS_ASSOC_DEFAULT_NAME))
/*
* what to return if a value is not found
@@ -31,7 +28,7 @@ rtems_assoc_name_bad(
#ifdef RTEMS_DEBUG
static char bad_buffer[32];
- sprintf(bad_buffer, "< %d [0x%x] >", bad_value, bad_value);
+ sprintf(bad_buffer, "< %" PRId32 "[0x%" PRIx32 " ] >", bad_value, bad_value);
#else
static char bad_buffer[32] = "<assoc.c: BAD NAME>";
#endif