| Index: tools/skiaserve/skiaserve.cpp
|
| diff --git a/tools/skiaserve/skiaserve.cpp b/tools/skiaserve/skiaserve.cpp
|
| index 164f59526d0e11b9e46f36de4bde88b5de5da601..fd96251b86ce6315319e7eb9c7e68e5975981acf 100644
|
| --- a/tools/skiaserve/skiaserve.cpp
|
| +++ b/tools/skiaserve/skiaserve.cpp
|
| @@ -86,7 +86,7 @@ int skiaserve_main() {
|
| address.sin_port = htons(FLAGS_port);
|
| int result = inet_pton(AF_INET, FLAGS_address[0], &address.sin_addr);
|
| if (result != 1) {
|
| - printf("inet_pton for %s:%d failed with return %d %s\n",
|
| + printf("inet_pton for %s:%d failed with return %d %s\n",
|
| FLAGS_address[0], FLAGS_port, result, strerror(errno));
|
| return 1;
|
| }
|
| @@ -97,7 +97,7 @@ int skiaserve_main() {
|
| daemon = MHD_start_daemon(MHD_USE_SELECT_INTERNALLY
|
| #ifdef SK_DEBUG
|
| | MHD_USE_DEBUG
|
| -#endif
|
| +#endif
|
| , FLAGS_port, nullptr, nullptr,
|
| &answer_to_connection, &request,
|
| MHD_OPTION_SOCK_ADDR, &address,
|
|
|