libmicrohttpd2

HTTP server C library (MHD 2.x, alpha)
Log | Files | Refs | README | LICENSE

commit 2f2355d3d67cbb8bd20578b237ad2252ebfba4e0
parent 35d16d0b5da3ca7befd801c677297d5b029ecd7b
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Sun, 17 Aug 2025 21:07:22 +0200

minimal_example2.c: fixed code style

Diffstat:
Msrc/examples2/minimal_example2.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/examples2/minimal_example2.c b/src/examples2/minimal_example2.c @@ -57,7 +57,7 @@ main (int argc, port = 8080; } else - port = atoi(argv[1]); + port = atoi (argv[1]); if ((1 > port) || (65535 < port)) { fprintf (stderr,