diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-06-24 13:50:37 -0400 |
---|---|---|
committer | jiangzhengwenjz <jiangzhengwenjzw@qq.com> | 2019-06-26 04:54:40 +0800 |
commit | d8cb938fd480a77f25c7975487f0c17641551938 (patch) | |
tree | 69080b7a67b16a7e94a9ba9f395028abc40d7cb7 /tools/br_ips/ips_patch.c | |
parent | 607d6fe77be9eff5b37554bc0c8fce1b9d1bcfbc (diff) |
Update to br_ips
Move FATAL_ERROR definition to header
Terminate strings read by getline with NUL
Diffstat (limited to 'tools/br_ips/ips_patch.c')
-rw-r--r-- | tools/br_ips/ips_patch.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/tools/br_ips/ips_patch.c b/tools/br_ips/ips_patch.c index 506f23ad7..c912474a8 100644 --- a/tools/br_ips/ips_patch.c +++ b/tools/br_ips/ips_patch.c @@ -2,24 +2,7 @@ #include <stdlib.h> #include <string.h> #include <stdint.h> - -#ifdef _MSC_VER - -#define FATAL_ERROR(format, ...) \ -do { \ - fprintf(stderr, format, __VA_ARGS__); \ - exit(1); \ -} while (0) - -#else - -#define FATAL_ERROR(format, ...) \ -do { \ - fprintf(stderr, format, ##__VA_ARGS__); \ - exit(1); \ -} while (0) - -#endif // _MSC_VER +#include "global.h" static const char SPLASH[] = "Small IPS patch utility\n" "Created by PikalaxALT on 23 June 2019 All Rights Reserved\n"; |