diff options
| author | Antonin Descampe <antonin@gmail.com> | 2006-01-24 21:02:13 +0000 |
|---|---|---|
| committer | Antonin Descampe <antonin@gmail.com> | 2006-01-24 21:02:13 +0000 |
| commit | cc3e813786a5f5f7b50a923ab31267200d202bd0 (patch) | |
| tree | 2c907e192cb96122c576974ad84c11fcff02ee60 /libopenjpeg | |
| parent | d280fdef70c7cf07356ed4afc469d20a66c52d6a (diff) | |
event.c : replaced "WIN32" by "_MSC_VER" for i2a (line 33) + replaced win32 line breaks
Diffstat (limited to 'libopenjpeg')
| -rw-r--r-- | libopenjpeg/event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopenjpeg/event.c b/libopenjpeg/event.c index 248ef6e3..0826046f 100644 --- a/libopenjpeg/event.c +++ b/libopenjpeg/event.c @@ -30,7 +30,7 @@ Utility functions ==========================================================*/ -#ifndef WIN32 +#ifndef _MSC_VER static char* i2a(unsigned i, char *a, unsigned r) { if (i/r > 0) a = i2a(i/r,a,r); |
