2007-03-13 Ralf Corsépius <ralf.corsepius@rtems.org>

* libcsupport/src/assocnamebad.c: Remove dead code. Use PRI* macros
	  to fix warnings.
This commit is contained in:
Ralf Corsepius
2007-03-13 05:40:14 +00:00
parent e4851067d3
commit 63feedc880
2 changed files with 7 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
2007-03-13 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/src/assocnamebad.c: Remove dead code. Use PRI* macros
to fix warnings.
2007-03-12 Joel Sherrill <joel@OARcorp.com> 2007-03-12 Joel Sherrill <joel@OARcorp.com>
* score/src/heapallocatealigned.c: Correct license URL and/or fix * score/src/heapallocatealigned.c: Correct license URL and/or fix

View File

@@ -12,11 +12,8 @@
#include <rtems.h> #include <rtems.h>
#include <rtems/assoc.h> #include <rtems/assoc.h>
#include <inttypes.h>
#include <stdio.h> /* sprintf */ #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 * what to return if a value is not found
@@ -31,7 +28,7 @@ rtems_assoc_name_bad(
#ifdef RTEMS_DEBUG #ifdef RTEMS_DEBUG
static char bad_buffer[32]; 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 #else
static char bad_buffer[32] = "<assoc.c: BAD NAME>"; static char bad_buffer[32] = "<assoc.c: BAD NAME>";
#endif #endif