diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2009-08-03 14:31:40 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2009-08-03 14:31:40 +0200 |
commit | 40e7fe0e053129c28c59acc79e94cc10e89e7738 (patch) | |
tree | 326f63f3a160b8bdb4709eb7892cbbd707deba8b /apt-pkg | |
parent | 33250e2f415611f820e24ba2f9f4d0e568d67d02 (diff) |
[apt-pkg/contrib/fileutl.cc] In function ExecWait(): fix compile warning:
warning: suggest explicit braces to avoid ambiguous ‘else’
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index a7de09c44..4240d9f49 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -451,10 +451,12 @@ bool ExecWait(pid_t Pid,const char *Name,bool Reap) if (Reap == true) return false; if (WIFSIGNALED(Status) != 0) + { if( WTERMSIG(Status) == SIGSEGV) return _error->Error(_("Sub-process %s received a segmentation fault."),Name); else return _error->Error(_("Sub-process %s received signal %u."),Name, WTERMSIG(Status)); + } if (WIFEXITED(Status) != 0) return _error->Error(_("Sub-process %s returned an error code (%u)"),Name,WEXITSTATUS(Status)); |