]> git.armaanb.net Git - chorizo.git/commitdiff
Standardize comment style
authorArmaan Bhojwani <me@armaanb.net>
Wed, 9 Jun 2021 18:50:51 +0000 (14:50 -0400)
committerArmaan Bhojwani <me@armaanb.net>
Thu, 10 Jun 2021 01:27:43 +0000 (21:27 -0400)
src/browser.c
src/downloads.c

index 669ba60f295b1c4f66761fee4187eaf301be0664..995ee5ad8ce3e755471a521431a3694b54b16685 100644 (file)
@@ -256,7 +256,7 @@ client_new(const gchar *uri, WebKitWebView *related_wv, gboolean show,
     g_signal_connect(G_OBJECT(evbox), "scroll-event", G_CALLBACK(key_tablabel),
                      c);
 
-    /* For easy access, store a reference to our label. */
+    // For easy access, store a reference to our label.
     g_object_set_data(G_OBJECT(evbox), "chorizo-tab-label", c->tablabel);
 
     /* This only shows the event box and the label inside, nothing else.
@@ -310,8 +310,8 @@ cooperation_setup(void) {
         fprintf(stderr, __NAME__ ": Can't open FIFO at all.\n");
     } else {
         if (write(cooperative_pipe_fp, "", 0) == -1) {
-            /* Could not do an empty write to the FIFO which means
-      there's no one listening. */
+            /* Could not do an empty write to the FIFO which means there's no
+             * one listening. */
             close(cooperative_pipe_fp);
             towatch = g_io_channel_new_file(fifopath, "r+", NULL);
             g_io_add_watch(towatch, G_IO_IN, (GIOFunc)remote_msg, NULL);
@@ -474,7 +474,7 @@ decide_policy(WebKitWebView *web_view, WebKitPolicyDecision *decision,
             webkit_policy_decision_use(decision);
         break;
     default:
-        /* Use whatever default there is. */
+        // Use whatever default there is.
         return FALSE;
     }
     return TRUE;
index 6e92a2b27840472d9727c3e3d2413d50399fdf18..ec0b242876adac89781a1acaaf0ab08c4e58f015 100644 (file)
@@ -55,8 +55,8 @@ changed_download_progress(GObject *obj, GParamSpec *pspec, gpointer data) {
     uri = webkit_download_get_destination(download);
     filename = g_filename_from_uri(uri, NULL, NULL);
     if (filename == NULL) {
-        /* This really should not happen because WebKit uses that URI to
-         * write to a file... */
+        /* This really should not happen because WebKit uses that URI
+         * to write to a file... */
         fprintf(stderr, __NAME__ ": Could not construct file name from URI!\n");
         t = g_strdup_printf("%s (%.0f%% of %.1f MB)",
                             webkit_uri_response_get_uri(resp), p, size_mb);