Skip to content

Commit

Permalink
S3select: cleaning clang-tidy warnings
Browse files Browse the repository at this point in the history
const-correctness, overrides, extra copying, ...

Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
  • Loading branch information
ronen-fr committed Dec 15, 2020
1 parent 0f15a1b commit 86a344a
Show file tree
Hide file tree
Showing 5 changed files with 308 additions and 316 deletions.
3 changes: 1 addition & 2 deletions example/generate_rand_csv.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ int main(int argc, char** argv)
{
if (argc<3)
{
printf("%s <num-of-rows> <num-of-columns> \n", argv[0]);
printf("%s <num-of-rows> <num-of-columns>\n", argv[0]);
return -1;
}

srand(1234);
int line_no=0;
for(int i=0; i<atoi(argv[1]); i++)
{
printf("%d,", i);
Expand Down

0 comments on commit 86a344a

Please sign in to comment.