summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2022-07-01 14:42:02 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2022-07-01 14:42:02 +0300
commitf09687094cbfbfd2b4373ba6a09fc40a1644bd85 (patch)
tree54426145657611ff0acb10ea0beb02d6eb467e89 /scripts
parenta1267724cb1d1837026a3a5f49e55931038e43e7 (diff)
parent392ee571c175e160869a2ee0510f818e81510a03 (diff)
downloadmariadb-git-f09687094cbfbfd2b4373ba6a09fc40a1644bd85.tar.gz
Merge 10.4 into 10.5
Diffstat (limited to 'scripts')
-rw-r--r--scripts/comp_sql.c4
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 \"");