diff options
author | monty@mysql.com <> | 2004-03-19 14:52:48 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-03-19 14:52:48 +0200 |
commit | b7fc7188d0959f59f0a59ce6c293ce156b8659e2 (patch) | |
tree | 1c6d92ecad9833a2597679df059d3a046018aa9d /innobase | |
parent | b4364ca7a612fd63aef87c35d6658737b5386dfd (diff) | |
download | mariadb-git-b7fc7188d0959f59f0a59ce6c293ce156b8659e2.tar.gz |
Portability fixes
Removed \r from new tests
Fixes to get new sustem_mysql_db... tests to work
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/que/que0que.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/innobase/que/que0que.c b/innobase/que/que0que.c index bff0fe61248..b90a5eb3a61 100644 --- a/innobase/que/que0que.c +++ b/innobase/que/que0que.c @@ -668,15 +668,15 @@ does nothing! */ void que_thr_handle_error( /*=================*/ - que_thr_t* thr __attribute((unused)), + que_thr_t* thr __attribute__((unused)), /* in: query thread */ - ulint err_no __attribute((unused)), + ulint err_no __attribute__((unused)), /* in: error number */ - byte* err_str __attribute((unused)), + byte* err_str __attribute__((unused)), /* in, own: error string or NULL; NOTE: the function will take care of freeing of the string! */ - ulint err_len __attribute((unused))) + ulint err_len __attribute__((unused))) /* in: error string length */ { /* Does nothing */ |