about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--halt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/halt.c b/halt.c
index 90d5930..0405ced 100644
--- a/halt.c
+++ b/halt.c
@@ -6,13 +6,13 @@
 
 extern char *__progname;
 
-typedef enum {NOOP, HALT, REBOOT, POWEROFF} action_t;
+typedef enum {NOOP, HALT, REBOOT, POWEROFF} action_type;
 
 int main(int argc, char *argv[]) {
   int do_sync = 1;
   int do_force = 0;
   int opt;
-  action_t action = NOOP;
+  action_type action = NOOP;
 
   if (strcmp(__progname, "halt") == 0)
     action = HALT;