Skip to content

Commit ef224ca

Browse files
authored
Update DBQuery.cpp
1 parent cf307df commit ef224ca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/DBQuery.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,14 +147,14 @@ int main(int argc, const char* argv[])
147147
{
148148
param.host = "localhost";
149149
param.port = 12321;
150-
param.hint = atoi(argv[1]);
150+
param.hint = atoll(argv[1]);
151151
param.sql = argv[2];
152152
}
153153
else if (argc == 4)
154154
{
155155
param.host = "localhost";
156156
param.port = 12321;
157-
param.hint = atoi(argv[1]);
157+
param.hint = atoll(argv[1]);
158158
param.tablename = argv[2];
159159
param.sql = argv[3];
160160
}

0 commit comments

Comments
 (0)