Skip to content

Commit

Permalink
Fix build in pg_server_main.cc
Browse files Browse the repository at this point in the history
Summary: Fix build in pg_server_main.cc: InitYB missing an argument.

Test Plan: Jenkins

Reviewers: timur, neil

Subscribers: yql

Differential Revision: https://phabricator.dev.yugabyte.com/D4401
  • Loading branch information
mbautin committed Mar 19, 2018
1 parent 5a91590 commit f4a1c89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/yb/yql/pgsql/server/pg_server_main.cc
Expand Up @@ -43,7 +43,7 @@ static int PgServerDriver(int argc, char** argv) {
std::cerr << "usage: " << argv[0] << std::endl;
return 1;
}
LOG_AND_RETURN_FROM_MAIN_NOT_OK(InitYB("pgsqlserver"));
LOG_AND_RETURN_FROM_MAIN_NOT_OK(InitYB("pgsqlserver", argv[0]));
InitGoogleLoggingSafe(argv[0]);

// Construct server.
Expand Down

0 comments on commit f4a1c89

Please sign in to comment.