diff options
author | tb <> | 2024-02-24 07:50:25 +0000 |
---|---|---|
committer | tb <> | 2024-02-24 07:50:25 +0000 |
commit | f053354625552df382c031246b742194392db0c5 (patch) | |
tree | d42a7d19a36683e34c703a3b712d6a3788d94ed1 | |
parent | 501fb5e3889fa53d51e5261dede7b653c754d22a (diff) | |
download | openbsd-f053354625552df382c031246b742194392db0c5.tar.gz openbsd-f053354625552df382c031246b742194392db0c5.tar.bz2 openbsd-f053354625552df382c031246b742194392db0c5.zip |
err.c: fix incorrect line wrapping
-rw-r--r-- | src/lib/libcrypto/err/err.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/err/err.c b/src/lib/libcrypto/err/err.c index 4b4be213b4..f13e889da9 100644 --- a/src/lib/libcrypto/err/err.c +++ b/src/lib/libcrypto/err/err.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: err.c,v 1.56 2023/07/28 10:23:19 tb Exp $ */ | 1 | /* $OpenBSD: err.c,v 1.57 2024/02/24 07:50:25 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -328,8 +328,8 @@ err_string_data_cmp(const ERR_STRING_DATA *a, const ERR_STRING_DATA *b) | |||
328 | } | 328 | } |
329 | static IMPLEMENT_LHASH_COMP_FN(err_string_data, ERR_STRING_DATA) | 329 | static IMPLEMENT_LHASH_COMP_FN(err_string_data, ERR_STRING_DATA) |
330 | 330 | ||
331 | static | 331 | static LHASH_OF(ERR_STRING_DATA) * |
332 | LHASH_OF(ERR_STRING_DATA) *int_err_get(int create) | 332 | int_err_get(int create) |
333 | { | 333 | { |
334 | LHASH_OF(ERR_STRING_DATA) *ret = NULL; | 334 | LHASH_OF(ERR_STRING_DATA) *ret = NULL; |
335 | 335 | ||
@@ -425,8 +425,8 @@ err_state_cmp(const ERR_STATE *a, const ERR_STATE *b) | |||
425 | } | 425 | } |
426 | static IMPLEMENT_LHASH_COMP_FN(err_state, ERR_STATE) | 426 | static IMPLEMENT_LHASH_COMP_FN(err_state, ERR_STATE) |
427 | 427 | ||
428 | static | 428 | static LHASH_OF(ERR_STATE) * |
429 | LHASH_OF(ERR_STATE) *int_thread_get(int create) | 429 | int_thread_get(int create) |
430 | { | 430 | { |
431 | LHASH_OF(ERR_STATE) *ret = NULL; | 431 | LHASH_OF(ERR_STATE) *ret = NULL; |
432 | 432 | ||