[libsoup] Bug 789096 - format-zero-length warning triggered in soup-logger.c
- From: Tomas Popela <tpopela src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libsoup] Bug 789096 - format-zero-length warning triggered in soup-logger.c
- Date: Wed, 18 Oct 2017 08:44:30 +0000 (UTC)
commit 89fae9b0dbd008cdacba5e4daf75c2b9133373be
Author: Tomas Popela <tpopela redhat com>
Date: Tue Oct 17 15:19:49 2017 +0200
Bug 789096 - format-zero-length warning triggered in soup-logger.c
The calls are supposed to print a new line - fix them. Also fix
a white space errors while touching the file.
libsoup/soup-logger.c | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/libsoup/soup-logger.c b/libsoup/soup-logger.c
index 0b3b145..261ec8d 100644
--- a/libsoup/soup-logger.c
+++ b/libsoup/soup-logger.c
@@ -44,9 +44,9 @@
* > Host: localhost
* > Content-Type: text/plain
* > Connection: close
- * >
+ * >
* > This is a test.
- *
+ *
* < HTTP/1.1 201 Created
* < Soup-Debug-Timestamp: 1200171744
* < Soup-Debug: SoupMessage 1 (0x617000)
@@ -289,7 +289,7 @@ soup_logger_class_init (SoupLoggerClass *logger_class)
* Returns: a new #SoupLogger
**/
SoupLogger *
-soup_logger_new (SoupLoggerLogLevel level, int max_body_size)
+soup_logger_new (SoupLoggerLogLevel level, int max_body_size)
{
return g_object_new (SOUP_TYPE_LOGGER,
SOUP_LOGGER_LEVEL, level,
@@ -699,7 +699,7 @@ finished (SoupMessage *msg, gpointer user_data)
g_mutex_lock (&priv->lock);
print_response (logger, msg);
- soup_logger_print (logger, SOUP_LOGGER_LOG_MINIMAL, ' ', "");
+ soup_logger_print (logger, SOUP_LOGGER_LOG_MINIMAL, ' ', "\n");
g_mutex_unlock (&priv->lock);
}
@@ -714,7 +714,7 @@ got_informational (SoupMessage *msg, gpointer user_data)
g_signal_handlers_disconnect_by_func (msg, finished, logger);
print_response (logger, msg);
- soup_logger_print (logger, SOUP_LOGGER_LOG_MINIMAL, ' ', "");
+ soup_logger_print (logger, SOUP_LOGGER_LOG_MINIMAL, ' ', "\n");
if (msg->status_code == SOUP_STATUS_CONTINUE && msg->request_body->data) {
SoupLoggerLogLevel log_level;
@@ -733,7 +733,7 @@ got_informational (SoupMessage *msg, gpointer user_data)
"%s", msg->request_body->data);
}
- soup_logger_print (logger, SOUP_LOGGER_LOG_MINIMAL, ' ', "");
+ soup_logger_print (logger, SOUP_LOGGER_LOG_MINIMAL, ' ', "\n");
}
g_mutex_unlock (&priv->lock);
@@ -749,7 +749,7 @@ got_body (SoupMessage *msg, gpointer user_data)
g_signal_handlers_disconnect_by_func (msg, finished, logger);
print_response (logger, msg);
- soup_logger_print (logger, SOUP_LOGGER_LOG_MINIMAL, ' ', "");
+ soup_logger_print (logger, SOUP_LOGGER_LOG_MINIMAL, ' ', "\n");
g_mutex_unlock (&priv->lock);
}
@@ -781,7 +781,7 @@ starting (SoupMessage *msg, gpointer user_data)
soup_logger_set_id (logger, socket);
print_request (logger, msg, socket, restarted);
- soup_logger_print (logger, SOUP_LOGGER_LOG_MINIMAL, ' ', "");
+ soup_logger_print (logger, SOUP_LOGGER_LOG_MINIMAL, ' ', "\n");
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]