diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:36:23 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:46:02 -0500 |
commit | c583a2520616c2736cffc389c89a48b159366e6c (patch) | |
tree | b4925f26506fcee96c16119431c01760f05db95d /gdbsupport/job-control.cc | |
parent | ca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff) | |
download | gdb-users/simark/clang-format.zip gdb-users/simark/clang-format.tar.gz gdb-users/simark/clang-format.tar.bz2 |
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
Diffstat (limited to 'gdbsupport/job-control.cc')
-rw-r--r-- | gdbsupport/job-control.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdbsupport/job-control.cc b/gdbsupport/job-control.cc index 57dc32c..4820832 100644 --- a/gdbsupport/job-control.cc +++ b/gdbsupport/job-control.cc @@ -70,7 +70,7 @@ have_job_control () { /* OK, figure out whether we have job control. If termios is not available, leave job_control 0. */ -#if defined (HAVE_TERMIOS_H) +#if defined(HAVE_TERMIOS_H) /* Do all systems with termios have the POSIX way of identifying job control? I hope so. */ #ifdef _POSIX_JOB_CONTROL @@ -79,7 +79,7 @@ have_job_control () #ifdef _SC_JOB_CONTROL job_control = sysconf (_SC_JOB_CONTROL); #else - job_control = 0; /* Have to assume the worst. */ + job_control = 0; /* Have to assume the worst. */ #endif /* _SC_JOB_CONTROL */ #endif /* _POSIX_JOB_CONTROL */ #endif /* HAVE_TERMIOS_H */ |