From d5fb1142b286812fc12ff0e689e895690351f377 Mon Sep 17 00:00:00 2001 From: David Maciejak Date: Sun, 3 Mar 2019 22:50:22 +0800 Subject: [PATCH] Missing carriage return when printing error --- hydra-rtsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hydra-rtsp.c b/hydra-rtsp.c index e0eb6b5..ee09996 100644 --- a/hydra-rtsp.c +++ b/hydra-rtsp.c @@ -95,7 +95,7 @@ int32_t start_rtsp(int32_t s, char *ip, int32_t port, unsigned char options, cha lresp = hydra_receive_line(s); if (lresp == NULL) { - fprintf(stderr, "[ERROR] no server reply"); + fprintf(stderr, "[ERROR] no server reply\n"); return 1; }