aboutsummaryrefslogtreecommitdiff
path: root/gdbsupport/job-control.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gdbsupport/job-control.cc')
-rw-r--r--gdbsupport/job-control.cc4
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 */