diff options
| author | Flavio Cruz <flaviocruz@gmail.com> | 2015-12-29 23:13:38 +0100 | 
|---|---|---|
| committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-12-29 23:20:21 +0100 | 
| commit | aadd48305a93496e0158fb06f4cb7e1b33ecb6fc (patch) | |
| tree | 5f82d4dc814b0959b71aa3f214d1356458178473 | |
| parent | f5490b490c549efa89eefb6deefdc7341aa6a913 (diff) | |
fix compiler warnings in hurd/startup
startup: Fix compiler warning.
* startup/startup.c (do_mach_notify_dead_name): Fix format string.
| -rw-r--r-- | startup/startup.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/startup/startup.c b/startup/startup.c index e916768e..9c45f4bb 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 ();      }  | 
