Skip to content
This repository has been archived by the owner on May 9, 2018. It is now read-only.

Commit

Permalink
Fix getopt use on ppc64el
Browse files Browse the repository at this point in the history
  • Loading branch information
jbreams committed Oct 26, 2016
1 parent e7929a9 commit 110f116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dnxmq/mqexec.c
Original file line number Diff line number Diff line change
Expand Up @@ -412,11 +412,11 @@ int main(int argc, char ** argv) {
ev_child child_handler;
struct ev_loop * loop;
json_t * jobs = NULL, * results, *publisher = NULL;
int pullfd = -1, i, daemonize = 0, iothreads = 1;
int pullfd = -1, i, daemonize = 0, iothreads = 1, ch;
size_t pullfds = sizeof(pullfd);
json_t * config, *filter = NULL;
json_error_t config_err;
char ch, *configobj = "executor", *tmprootpath = NULL,
char *configobj = "executor", *tmprootpath = NULL,
*tmpunprivpath = NULL, *tmpunprivuser = NULL;
json_error_t jsonerr;

Expand Down

0 comments on commit 110f116

Please sign in to comment.