diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-15 19:44:28 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-15 19:44:28 +0000 |
commit | 0073d3ad05229317e093cbb3d8e4bafd7b6a6e1b (patch) | |
tree | 8bab7cec058ed689c84e6943f8ec9c5991da413d /src/htssafe.h | |
parent | 638cc96917f28a99fe9c4fb0ab0a93b16058e8bf (diff) |
tr -d '\r'
Diffstat (limited to 'src/htssafe.h')
-rw-r--r-- | src/htssafe.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/htssafe.h b/src/htssafe.h index d5f9e63..408d661 100644 --- a/src/htssafe.h +++ b/src/htssafe.h @@ -101,14 +101,14 @@ static HTS_UNUSED void abortf_(const char *exp, const char *file, int line) { #define HTS_IS_NOT_CHAR_BUFFER(VAR) ( ! HTS_IS_CHAR_BUFFER(VAR) ) /* Compile-time checks. */ -static HTS_UNUSED void htssafe_compile_time_check_(void) {
- char array[32];
- char *pointer = array;
- char check_array[HTS_IS_CHAR_BUFFER(array) ? 1 : -1];
- char check_pointer[HTS_IS_CHAR_BUFFER(pointer) ? -1 : 1];
- (void) pointer;
- (void) check_array;
- (void) check_pointer;
+static HTS_UNUSED void htssafe_compile_time_check_(void) { + char array[32]; + char *pointer = array; + char check_array[HTS_IS_CHAR_BUFFER(array) ? 1 : -1]; + char check_pointer[HTS_IS_CHAR_BUFFER(pointer) ? -1 : 1]; + (void) pointer; + (void) check_array; + (void) check_pointer; } /** |