blob: f65d2c4bbf0231ad8630506a50e0e4928fa2af03 [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From 2897794c337625d1951eb0b402cd8840ae2182a8 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 31 Aug 2022 10:33:57 -0700
4Subject: [PATCH] correct the typo in include file name string.h
5
6Upstream-Status: Pending
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8---
9 tools/serial_forward/src/forward.c | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/tools/serial_forward/src/forward.c b/tools/serial_forward/src/forward.c
13index 9fad6f9b..4c0dd9df 100644
14--- a/tools/serial_forward/src/forward.c
15+++ b/tools/serial_forward/src/forward.c
16@@ -20,7 +20,7 @@
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <termios.h>
20-#include <strings.h>
21+#include <string.h>
22 #include <getopt.h>
23
24 #include "forward.h"
25--
262.37.3
27