summaryrefslogtreecommitdiff
path: root/chip/host/reboot.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/host/reboot.c')
-rw-r--r--chip/host/reboot.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/chip/host/reboot.c b/chip/host/reboot.c
index e932c5f11a..24d90d943d 100644
--- a/chip/host/reboot.c
+++ b/chip/host/reboot.c
@@ -1,4 +1,4 @@
-/* Copyright 2013 The Chromium OS Authors. All rights reserved.
+/* Copyright 2013 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -20,10 +20,9 @@ void emulator_reboot(void)
ccprints("Emulator would reboot here. Fuzzing: doing nothing.");
}
#else /* !TEST_FUZZ */
-noreturn
-void emulator_reboot(void)
+noreturn void emulator_reboot(void)
{
- char *argv[] = {strdup(__get_prog_name()), NULL};
+ char *argv[] = { strdup(__get_prog_name()), NULL };
emulator_flush();
execv(__get_prog_name(), argv);
while (1)