author | Ryan C. Gordon <icculus@icculus.org> |
Mon, 01 Aug 2016 00:20:47 -0400 | |
changeset 10214 | 4f29bb9e19c3 |
parent 9998 | f67cf37e9cd4 |
permissions | -rw-r--r-- |
0 | 1 |
/* |
5535
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
2 |
Simple DirectMedia Layer |
9998
f67cf37e9cd4
Updated copyright to 2016
Sam Lantinga <slouken@libsdl.org>
parents:
9674
diff
changeset
|
3 |
Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org> |
0 | 4 |
|
5535
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
5 |
This software is provided 'as-is', without any express or implied |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
6 |
warranty. In no event will the authors be held liable for any damages |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
7 |
arising from the use of this software. |
0 | 8 |
|
5535
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
9 |
Permission is granted to anyone to use this software for any purpose, |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
10 |
including commercial applications, and to alter it and redistribute it |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
11 |
freely, subject to the following restrictions: |
0 | 12 |
|
5535
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
13 |
1. The origin of this software must not be misrepresented; you must not |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
14 |
claim that you wrote the original software. If you use this software |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
15 |
in a product, an acknowledgment in the product documentation would be |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
16 |
appreciated but is not required. |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
17 |
2. Altered source versions must be plainly marked as such, and must not be |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
18 |
misrepresented as being the original software. |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
19 |
3. This notice may not be removed or altered from any source distribution. |
0 | 20 |
*/ |
8093
b43765095a6f
Make internal SDL sources include SDL_internal.h instead of SDL_config.h
Ryan C. Gordon <icculus@icculus.org>
parents:
7191
diff
changeset
|
21 |
#include "./SDL_internal.h" |
0 | 22 |
|
23 |
/* Simple error handling in SDL */ |
|
24 |
||
5221
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
4992
diff
changeset
|
25 |
#include "SDL_log.h" |
0 | 26 |
#include "SDL_error.h" |
27 |
#include "SDL_error_c.h" |
|
28 |
||
4618
844b5ef4b149
Merged Sunny's XRender changes from SDL-gsoc2010_xrender
Sam Lantinga <slouken@libsdl.org>
diff
changeset
|
29 |
|
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
30 |
/* Routine to get the thread-specific error variable */ |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
31 |
#if SDL_THREADS_DISABLED |
4627 | 32 |
/* The default (non-thread-safe) global error variable */ |
0 | 33 |
static SDL_error SDL_global_error; |
7191
75360622e65f
File style cleanup for the SDL 2.0 release
Sam Lantinga <slouken@libsdl.org>
parents:
7037
diff
changeset
|
34 |
#define SDL_GetErrBuf() (&SDL_global_error) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
35 |
#else |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
36 |
extern SDL_error *SDL_GetErrBuf(void); |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
37 |
#endif /* SDL_THREADS_DISABLED */ |
0 | 38 |
|
7191
75360622e65f
File style cleanup for the SDL 2.0 release
Sam Lantinga <slouken@libsdl.org>
parents:
7037
diff
changeset
|
39 |
#define SDL_ERRBUFIZE 1024 |
0 | 40 |
|
41 |
/* Private functions */ |
|
42 |
||
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
43 |
static const char * |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
44 |
SDL_LookupString(const char *key) |
0 | 45 |
{ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
46 |
/* FIXME: Add code to lookup key in language string hash-table */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
47 |
return key; |
0 | 48 |
} |
49 |
||
50 |
/* Public functions */ |
|
51 |
||
7037
3fedf1f25b94
Make SDL_SetError and friends unconditionally return -1.
Ryan C. Gordon <icculus@icculus.org>
parents:
6885
diff
changeset
|
52 |
int |
8820
0e935d5b193a
Added annotations to help code analysis tools
Sam Lantinga <slouken@libsdl.org>
parents:
8149
diff
changeset
|
53 |
SDL_SetError(SDL_PRINTF_FORMAT_STRING const char *fmt, ...) |
0 | 54 |
{ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
55 |
va_list ap; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
56 |
SDL_error *error; |
0 | 57 |
|
5766
8cc2ae74cd83
Fixed SDL_SetError() by making NULL fmt a no-op, update test automation
Andreas Schiffler <aschiffler@ferzkopp.net>
parents:
5535
diff
changeset
|
58 |
/* Ignore call if invalid format pointer was passed */ |
7037
3fedf1f25b94
Make SDL_SetError and friends unconditionally return -1.
Ryan C. Gordon <icculus@icculus.org>
parents:
6885
diff
changeset
|
59 |
if (fmt == NULL) return -1; |
7191
75360622e65f
File style cleanup for the SDL 2.0 release
Sam Lantinga <slouken@libsdl.org>
parents:
7037
diff
changeset
|
60 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
61 |
/* Copy in the key, mark error as valid */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
62 |
error = SDL_GetErrBuf(); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
63 |
error->error = 1; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
64 |
SDL_strlcpy((char *) error->key, fmt, sizeof(error->key)); |
0 | 65 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
66 |
va_start(ap, fmt); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
67 |
error->argc = 0; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
68 |
while (*fmt) { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
69 |
if (*fmt++ == '%') { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
70 |
while (*fmt == '.' || (*fmt >= '0' && *fmt <= '9')) { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
71 |
++fmt; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
72 |
} |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
73 |
switch (*fmt++) { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
74 |
case 0: /* Malformed format string.. */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
75 |
--fmt; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
76 |
break; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
77 |
case 'c': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
78 |
case 'i': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
79 |
case 'd': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
80 |
case 'u': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
81 |
case 'o': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
82 |
case 'x': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
83 |
case 'X': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
84 |
error->args[error->argc++].value_i = va_arg(ap, int); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
85 |
break; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
86 |
case 'f': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
87 |
error->args[error->argc++].value_f = va_arg(ap, double); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
88 |
break; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
89 |
case 'p': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
90 |
error->args[error->argc++].value_ptr = va_arg(ap, void *); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
91 |
break; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
92 |
case 's': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
93 |
{ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
94 |
int i = error->argc; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
95 |
const char *str = va_arg(ap, const char *); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
96 |
if (str == NULL) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
97 |
str = "(null)"; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
98 |
SDL_strlcpy((char *) error->args[i].buf, str, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
99 |
ERR_MAX_STRLEN); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
100 |
error->argc++; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
101 |
} |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
102 |
break; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
103 |
default: |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
104 |
break; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
105 |
} |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
106 |
if (error->argc >= ERR_MAX_ARGS) { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
107 |
break; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
108 |
} |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
109 |
} |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
110 |
} |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
111 |
va_end(ap); |
0 | 112 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
113 |
/* If we are in debug mode, print out an error message */ |
9674
b0f63fe6e012
Fixed bug 2210 - Initializing Video produces unnecessary errors
Sam Lantinga <slouken@libsdl.org>
parents:
9619
diff
changeset
|
114 |
SDL_LogDebug(SDL_LOG_CATEGORY_ERROR, "%s", SDL_GetError()); |
7037
3fedf1f25b94
Make SDL_SetError and friends unconditionally return -1.
Ryan C. Gordon <icculus@icculus.org>
parents:
6885
diff
changeset
|
115 |
|
3fedf1f25b94
Make SDL_SetError and friends unconditionally return -1.
Ryan C. Gordon <icculus@icculus.org>
parents:
6885
diff
changeset
|
116 |
return -1; |
0 | 117 |
} |
118 |
||
119 |
/* This function has a bit more overhead than most error functions |
|
120 |
so that it supports internationalization and thread-safe errors. |
|
121 |
*/ |
|
4472
791b3256fb22
Mostly cleaned up warnings with -Wmissing-prototypes
Sam Lantinga <slouken@libsdl.org>
parents:
3697
diff
changeset
|
122 |
static char * |
9430
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
123 |
SDL_GetErrorMsg(char *errstr, int maxlen) |
0 | 124 |
{ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
125 |
SDL_error *error; |
0 | 126 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
127 |
/* Clear the error string */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
128 |
*errstr = '\0'; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
129 |
--maxlen; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
130 |
|
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
131 |
/* Get the thread-safe error, and print it out */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
132 |
error = SDL_GetErrBuf(); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
133 |
if (error->error) { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
134 |
const char *fmt; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
135 |
char *msg = errstr; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
136 |
int len; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
137 |
int argi; |
0 | 138 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
139 |
fmt = SDL_LookupString(error->key); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
140 |
argi = 0; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
141 |
while (*fmt && (maxlen > 0)) { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
142 |
if (*fmt == '%') { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
143 |
char tmp[32], *spot = tmp; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
144 |
*spot++ = *fmt++; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
145 |
while ((*fmt == '.' || (*fmt >= '0' && *fmt <= '9')) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
146 |
&& spot < (tmp + SDL_arraysize(tmp) - 2)) { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
147 |
*spot++ = *fmt++; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
148 |
} |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
149 |
*spot++ = *fmt++; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
150 |
*spot++ = '\0'; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
151 |
switch (spot[-2]) { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
152 |
case '%': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
153 |
*msg++ = '%'; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
154 |
maxlen -= 1; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
155 |
break; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
156 |
case 'c': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
157 |
case 'i': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
158 |
case 'd': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
159 |
case 'u': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
160 |
case 'o': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
161 |
case 'x': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
162 |
case 'X': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
163 |
len = |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
164 |
SDL_snprintf(msg, maxlen, tmp, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
165 |
error->args[argi++].value_i); |
9430
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
166 |
if (len > 0) { |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
167 |
msg += len; |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
168 |
maxlen -= len; |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
169 |
} |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
170 |
break; |
9430
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
171 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
172 |
case 'f': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
173 |
len = |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
174 |
SDL_snprintf(msg, maxlen, tmp, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
175 |
error->args[argi++].value_f); |
9430
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
176 |
if (len > 0) { |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
177 |
msg += len; |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
178 |
maxlen -= len; |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
179 |
} |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
180 |
break; |
9430
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
181 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
182 |
case 'p': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
183 |
len = |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
184 |
SDL_snprintf(msg, maxlen, tmp, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
185 |
error->args[argi++].value_ptr); |
9430
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
186 |
if (len > 0) { |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
187 |
msg += len; |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
188 |
maxlen -= len; |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
189 |
} |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
190 |
break; |
9430
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
191 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
192 |
case 's': |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
193 |
len = |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
194 |
SDL_snprintf(msg, maxlen, tmp, |
3013
8cc00819c8d6
Reverted Bob's indent checkin
Sam Lantinga <slouken@libsdl.org>
parents:
3011
diff
changeset
|
195 |
SDL_LookupString(error->args[argi++]. |
8cc00819c8d6
Reverted Bob's indent checkin
Sam Lantinga <slouken@libsdl.org>
parents:
3011
diff
changeset
|
196 |
buf)); |
9430
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
197 |
if (len > 0) { |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
198 |
msg += len; |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
199 |
maxlen -= len; |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
200 |
} |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
201 |
break; |
9430
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
202 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
203 |
} |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
204 |
} else { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
205 |
*msg++ = *fmt++; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
206 |
maxlen -= 1; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
207 |
} |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
208 |
} |
9430
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
209 |
|
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
210 |
/* slide back if we've overshot the end of our buffer. */ |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
211 |
if (maxlen < 0) { |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
212 |
msg -= (-maxlen) + 1; |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
213 |
} |
92622f92bb8c
Make SDL error string formatting deal with nasty corner cases.
Ryan C. Gordon <icculus@icculus.org>
parents:
8820
diff
changeset
|
214 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
215 |
*msg = 0; /* NULL terminate the string */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
216 |
} |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
217 |
return (errstr); |
0 | 218 |
} |
219 |
||
220 |
/* Available for backwards compatibility */ |
|
4867
ba7492f9e2b8
While you can actually write to the error buffer, conceptually it's read-only.
Sam Lantinga <slouken@libsdl.org>
parents:
4627
diff
changeset
|
221 |
const char * |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
222 |
SDL_GetError(void) |
0 | 223 |
{ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
224 |
static char errmsg[SDL_ERRBUFIZE]; |
0 | 225 |
|
4867
ba7492f9e2b8
While you can actually write to the error buffer, conceptually it's read-only.
Sam Lantinga <slouken@libsdl.org>
parents:
4627
diff
changeset
|
226 |
return SDL_GetErrorMsg(errmsg, SDL_ERRBUFIZE); |
0 | 227 |
} |
228 |
||
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
229 |
void |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
230 |
SDL_ClearError(void) |
0 | 231 |
{ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
232 |
SDL_error *error; |
0 | 233 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
234 |
error = SDL_GetErrBuf(); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
235 |
error->error = 0; |
0 | 236 |
} |
237 |
||
238 |
/* Very common errors go here */ |
|
7037
3fedf1f25b94
Make SDL_SetError and friends unconditionally return -1.
Ryan C. Gordon <icculus@icculus.org>
parents:
6885
diff
changeset
|
239 |
int |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
240 |
SDL_Error(SDL_errorcode code) |
0 | 241 |
{ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
242 |
switch (code) { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
243 |
case SDL_ENOMEM: |
7037
3fedf1f25b94
Make SDL_SetError and friends unconditionally return -1.
Ryan C. Gordon <icculus@icculus.org>
parents:
6885
diff
changeset
|
244 |
return SDL_SetError("Out of memory"); |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
245 |
case SDL_EFREAD: |
7037
3fedf1f25b94
Make SDL_SetError and friends unconditionally return -1.
Ryan C. Gordon <icculus@icculus.org>
parents:
6885
diff
changeset
|
246 |
return SDL_SetError("Error reading from datastream"); |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
247 |
case SDL_EFWRITE: |
7037
3fedf1f25b94
Make SDL_SetError and friends unconditionally return -1.
Ryan C. Gordon <icculus@icculus.org>
parents:
6885
diff
changeset
|
248 |
return SDL_SetError("Error writing to datastream"); |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
249 |
case SDL_EFSEEK: |
7037
3fedf1f25b94
Make SDL_SetError and friends unconditionally return -1.
Ryan C. Gordon <icculus@icculus.org>
parents:
6885
diff
changeset
|
250 |
return SDL_SetError("Error seeking in datastream"); |
3317 | 251 |
case SDL_UNSUPPORTED: |
7037
3fedf1f25b94
Make SDL_SetError and friends unconditionally return -1.
Ryan C. Gordon <icculus@icculus.org>
parents:
6885
diff
changeset
|
252 |
return SDL_SetError("That operation is not supported"); |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
253 |
default: |
7037
3fedf1f25b94
Make SDL_SetError and friends unconditionally return -1.
Ryan C. Gordon <icculus@icculus.org>
parents:
6885
diff
changeset
|
254 |
return SDL_SetError("Unknown SDL error"); |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
255 |
} |
0 | 256 |
} |
257 |
||
258 |
#ifdef TEST_ERROR |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
259 |
int |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
260 |
main(int argc, char *argv[]) |
0 | 261 |
{ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
262 |
char buffer[BUFSIZ + 1]; |
0 | 263 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
264 |
SDL_SetError("Hi there!"); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
265 |
printf("Error 1: %s\n", SDL_GetError()); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
266 |
SDL_ClearError(); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
267 |
SDL_memset(buffer, '1', BUFSIZ); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
268 |
buffer[BUFSIZ] = 0; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
269 |
SDL_SetError("This is the error: %s (%f)", buffer, 1.0); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
270 |
printf("Error 2: %s\n", SDL_GetError()); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
271 |
exit(0); |
0 | 272 |
} |
273 |
#endif |
|
4992
b12d76ef05e2
Added an extra line for consistency
Sam Lantinga <slouken@libsdl.org>
parents:
4979
diff
changeset
|
274 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1847
diff
changeset
|
275 |
/* vi: set ts=4 sw=4 expandtab: */ |