summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/utsname.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/utsname.c')
-rw-r--r--cpukit/libcsupport/src/utsname.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/utsname.c b/cpukit/libcsupport/src/utsname.c
index cc114434bf..6ba6c196c0 100644
--- a/cpukit/libcsupport/src/utsname.c
+++ b/cpukit/libcsupport/src/utsname.c
@@ -15,7 +15,7 @@
#include <rtems/system.h>
#include <rtems/score/object.h>
-#include <rtems/sptables.h>
+#include <inttypes.h>
#include <rtems/seterr.h>
@@ -41,7 +41,7 @@ int uname(
strcpy( name->sysname, "RTEMS" );
- sprintf( name->nodename, "Node %d", _Objects_Local_node );
+ sprintf( name->nodename, "Node %" PRId32, _Objects_Local_node );
strcpy( name->release, RTEMS_VERSION );