From c583a2520616c2736cffc389c89a48b159366e6c Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Wed, 8 Feb 2023 15:36:23 -0500 Subject: Run clang-format.sh Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968 --- gdb/proc-flags.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gdb/proc-flags.c') diff --git a/gdb/proc-flags.c b/gdb/proc-flags.c index 85989b7..14572b0 100644 --- a/gdb/proc-flags.c +++ b/gdb/proc-flags.c @@ -37,17 +37,17 @@ following form. These tables can be used to map numeric values to their symbolic names and to a string that describes their specific use. */ -struct trans { - int value; /* The numeric value */ - const char *name; /* The equivalent symbolic value */ - const char *desc; /* Short description of value */ +struct trans +{ + int value; /* The numeric value */ + const char *name; /* The equivalent symbolic value */ + const char *desc; /* Short description of value */ }; /* Translate bits in the pr_flags member of the prstatus structure, into the names and desc information. */ -static struct trans pr_flag_table[] = -{ +static struct trans pr_flag_table[] = { /* lwp is stopped */ { PR_STOPPED, "PR_STOPPED", "Process (LWP) is stopped" }, /* lwp is stopped on an event of interest */ -- cgit v1.1