[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] fix compiler warnings in hurd/startup
From: |
Flavio Cruz |
Subject: |
[PATCH] fix compiler warnings in hurd/startup |
Date: |
Tue, 29 Dec 2015 23:13:38 +0100 |
User-agent: |
Mutt/1.5.24 (2015-08-30) |
---
startup: Fix compiler warning.
* startup/startup.c (do_mach_notify_dead_name): Fix format string.
diff --git a/startup/startup.c b/startup/startup.c
index e916768..9c45f4b 100644
--- a/startup/startup.c
+++ b/startup/startup.c
@@ -1329,7 +1329,7 @@ do_mach_notify_dead_name (mach_port_t notify,
boots[i].name);
crash_mach ();
}
- error (0, 0, "BUG! Unexpected dead-name notification (name %#zx)",
+ error (0, 0, "BUG! Unexpected dead-name notification (name %#lx)",
name);
crash_mach ();
}
- [PATCH] fix compiler warnings in hurd/startup,
Flavio Cruz <=