diff options
Diffstat (limited to 'ext/pdo_mysql/get_error_codes.php')
-rwxr-xr-x | ext/pdo_mysql/get_error_codes.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_mysql/get_error_codes.php b/ext/pdo_mysql/get_error_codes.php index 93f523ed20..4c956f8c4e 100755 --- a/ext/pdo_mysql/get_error_codes.php +++ b/ext/pdo_mysql/get_error_codes.php @@ -16,7 +16,7 @@ fputs(STDERR, "input doesn't look like a MySQL sql_state.h file\n"); exit(3); } - + echo "/* DO NOT EDIT THIS FILE!!! It is auto generated by get_error_codes.php */\n"; foreach ($codes as $code => $state) { echo "#ifdef $code\n"; @@ -24,5 +24,5 @@ echo "#endif\n"; } - + ?> |