diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/reboot.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/reboot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/reboot.c b/sysdeps/unix/sysv/linux/reboot.c index 1a01ec2f61..11cef30e13 100644 --- a/sysdeps/unix/sysv/linux/reboot.c +++ b/sysdeps/unix/sysv/linux/reboot.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -28,5 +28,5 @@ extern int __syscall_reboot (int magic, int magic_too, int flag); int reboot (int howto) { - return INLINE_SYSCALL (reboot, 3, 0xfee1dead, 672274793, howto); + return INLINE_SYSCALL (reboot, 3, (int) 0xfee1dead, 672274793, howto); } |