xiaoxiang781216 commented on code in PR #1340: URL: https://github.com/apache/incubator-nuttx-apps/pull/1340#discussion_r995765730
########## netutils/thttpd/cgi-src/ssi.c: ########## @@ -99,81 +99,82 @@ static void internal_error(char *reason) { char *title = "500 Internal Error"; - printf("\ -<HTML><HEAD><TITLE>%s</TITLE></HEAD>\n\ -<BODY><H2>%s</H2>\n\ -Something unusual went wrong during a server-side-includes request:\n\ -<BLOCKQUOTE>\n\ -%s\n\ -</BLOCKQUOTE>\n\ -</BODY></HTML>\n", title, title, reason); + printf("<HTML><HEAD><TITLE>%s</TITLE></HEAD>\n" + "<BODY><H2>%s</H2>\n" + "Something unusual went wrong during a server-side-includes request:\n" + "<BLOCKQUOTE>\n" + "%s\n" + "</BLOCKQUOTE>\n" + "</BODY></HTML>\n", + title, title, reason); Review Comment: can't since the line 104 will exceed 79 chars. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org