powerpc: fix iflag build issue (static -> extern)

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
This commit is contained in:
Anton Blanchard 2013-07-12 12:22:06 +02:00 committed by Denys Vlasenko
parent c169d94718
commit a34deadbb3
2 changed files with 2 additions and 1 deletions

1
defs.h
View File

@ -550,6 +550,7 @@ typedef enum {
extern cflag_t cflag;
extern bool debug_flag;
extern bool Tflag;
extern bool iflag;
extern unsigned int qflag;
extern bool not_failing_only;
extern bool show_fd_path;

View File

@ -77,11 +77,11 @@ unsigned int xflag = 0;
bool need_fork_exec_workarounds = 0;
bool debug_flag = 0;
bool Tflag = 0;
bool iflag = 0;
unsigned int qflag = 0;
/* Which WSTOPSIG(status) value marks syscall traps? */
static unsigned int syscall_trap_sig = SIGTRAP;
static unsigned int tflag = 0;
static bool iflag = 0;
static bool rflag = 0;
static bool print_pid_pfx = 0;