diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2022-07-01 13:10:36 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2022-07-01 13:10:36 +0300 |
commit | 392ee571c175e160869a2ee0510f818e81510a03 (patch) | |
tree | 4481d8aa631bdd295300b875791d9d179c0a4b70 /scripts | |
parent | 99de8cc02878ec8c20bffeaf17443e704d6edbf7 (diff) | |
parent | 990cde800a4aafc5f5647eb06db3eec461fd172a (diff) | |
download | mariadb-git-392ee571c175e160869a2ee0510f818e81510a03.tar.gz |
Merge 10.3 into 10.4
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/comp_sql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/comp_sql.c b/scripts/comp_sql.c index 5cd5642c9d0..56023613157 100644 --- a/scripts/comp_sql.c +++ b/scripts/comp_sql.c @@ -1,5 +1,5 @@ /* Copyright (c) 2004, 2010, Oracle and/or its affiliates. - Copyright (c) 2012, 2014, Monty Program Ab + Copyright (c) 2012, 2022, MariaDB Corporation. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -84,7 +84,7 @@ static void print_query(FILE *out, const char *query) fprintf(out, "\""); while (*ptr) { - if(column >= MAX_COLUMN) + if (column >= MAX_COLUMN) { /* Wrap to the next line, tabulated. */ fprintf(out, "\"\n \""); |