libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 202af117b434e415bbe5f6f4d687b0d76258dbb0
parent 4e5bddd004b36211b61bce7734fc797e7a950100
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Tue, 14 Jun 2022 20:15:51 +0300

test_helpers: fixed doxy

Diffstat:
Msrc/microhttpd/test_helpers.h | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/microhttpd/test_helpers.h b/src/microhttpd/test_helpers.h @@ -34,8 +34,8 @@ * @param prog_name program name, may include path * @param marker marker to look for. * @return zero if any parameter is NULL or empty string or - * @prog_name ends with slash or @marker is not found in - * program name, non-zero if @maker is found in program + * @a prog_name ends with slash or @a marker is not found in + * program name, non-zero if @a maker is found in program * name. */ static int @@ -61,7 +61,7 @@ has_in_name (const char *prog_name, const char *marker) } if (name_pos == pos) return 0; - return strstr (prog_name + name_pos, marker) != (char*) 0; + return strstr (prog_name + name_pos, marker) != (char *) 0; }