fixed line over 80cols.
authorJean-Philippe Orsini <jeanfi@gmail.com>
Tue, 22 Apr 2014 08:57:54 +0000 (10:57 +0200)
committerJean-Philippe Orsini <jeanfi@gmail.com>
Tue, 22 Apr 2014 08:57:54 +0000 (10:57 +0200)
NEWS
po/fr.po
po/ppastats.pot
src/lp_ws.c
src/ppastats.c

diff --git a/NEWS b/NEWS
index 1da6dff..1b09d49 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,7 @@ v1.3.1
 ------
 
 * fixed compilation when cppcheck is not installed.
+* fixed line over 80cols.
 
 v1.3.0
 ------
index 3caff03..484fa81 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ppastats 0.0.x\n"
 "Report-Msgid-Bugs-To: jeanfi@gmail.com\n"
-"POT-Creation-Date: 2014-04-22 01:57+0200\n"
+"POT-Creation-Date: 2014-04-22 10:57+0200\n"
 "PO-Revision-Date: 2012-05-05 23:45+0200\n"
 "Last-Translator:  <jeanfi@gmail.com>\n"
 "Language-Team: French\n"
@@ -148,7 +148,7 @@ msgstr ""
 msgid "Failed to retrieve PPA information"
 msgstr ""
 
-#: src/ppastats.c:373
+#: src/ppastats.c:374
 #, c-format
 msgid "Failed to retrieve download totals for %s"
 msgstr ""
index d4f3e61..d161efc 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ppastats 1.3.0\n"
 "Report-Msgid-Bugs-To: jeanfi@gmail.com\n"
-"POT-Creation-Date: 2014-04-22 01:57+0200\n"
+"POT-Creation-Date: 2014-04-22 10:57+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,7 +138,7 @@ msgstr ""
 msgid "Failed to retrieve PPA information"
 msgstr ""
 
-#: src/ppastats.c:373
+#: src/ppastats.c:374
 #, c-format
 msgid "Failed to retrieve download totals for %s"
 msgstr ""
index 49166f4..f04f169 100644 (file)
@@ -409,7 +409,9 @@ static struct daily_download_total **retrieve_ddts(const char *binary_url,
                ddts = NULL;
 
                while (date_since < crt) {
-                       url = create_ddts_query(binary_url, date_since, date_since);
+                       url = create_ddts_query(binary_url,
+                                               date_since,
+                                               date_since);
                        json = get_json_object(url);
                        free(url);
 
@@ -428,7 +430,8 @@ static struct daily_download_total **retrieve_ddts(const char *binary_url,
                        free(url);
 
                        if (json) {
-                               tmp = json_object_to_daily_download_totals(json);
+                               tmp = json_object_to_daily_download_totals
+                                       (json);
                                json_object_put(json);
                                ddts = ddts_merge(ddts, tmp);
                                free(tmp);
index 0990e0f..39b2d87 100644 (file)
@@ -368,7 +368,8 @@ create_ppa_stats(const char *owner,
 
        for (h_cur = history; *h_cur; ++h_cur) {
                h = *h_cur;
-               totals = get_daily_download_totals(h->self_link, h->date_created);
+               totals = get_daily_download_totals(h->self_link,
+                                                  h->date_created);
                if (!totals) {
                        log_err(_("Failed to retrieve download totals for %s"),
                                h->self_link);