From 8017e2a45c056eb6d9af81e0cabee9da76a3aebb Mon Sep 17 00:00:00 2001 From: Rong Tao <32674962+Rtoax@users.noreply.github.com> Date: Mon, 4 Jul 2022 13:06:47 +0800 Subject: [PATCH] Remove extra spaces --- example.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example.c b/example.c index 74358c32..4bd7d469 100644 --- a/example.c +++ b/example.c @@ -55,7 +55,7 @@ int main(int argc, char **argv) { * * The typed string is returned as a malloc() allocated string by * linenoise, so the user needs to free() it. */ - + while((line = linenoise("hello> ")) != NULL) { /* Do something with the string. */ if (line[0] != '\0' && line[0] != '/') {