-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Building pblat for more platforms (#51890)
* Building pblat for more platforms * Add run_exports * Fix typo in run_export * pblat: Add a patch to support linux-aarch64 Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org> --------- Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org> Co-authored-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
- Loading branch information
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git i/lib/htmshell.c w/lib/htmshell.c | ||
index 46d1f19..5ea164e 100644 | ||
--- i/lib/htmshell.c | ||
+++ w/lib/htmshell.c | ||
@@ -711,7 +711,7 @@ void htmlVaBadRequestAbort(char *format, va_list args) | ||
puts("Status: 400\r"); | ||
puts("Content-Type: text/plain; charset=UTF-8\r"); | ||
puts("\r"); | ||
-if (format != NULL && args != NULL) | ||
+if (format != NULL) | ||
{ | ||
vfprintf(stdout, format, args); | ||
fprintf(stdout, "\n"); |