]> mj.ucw.cz Git - teatimer.git/blobdiff - teatimer.c
Whitespace cleanup
[teatimer.git] / teatimer.c
index 1971d0d6d91104e30c1d76b94488d0e50e013829..df94fe2444e8d5428f420e213b9aab86917691df 100644 (file)
@@ -29,7 +29,7 @@ static int expired;
 static void
 expand_and_exec(char *cmd)
 {
-  GString * expanded_cmd = g_string_new("");
+  GString *expanded_cmd = g_string_new("");
   for (int i=0; cmd[i]; i++)
     {
       if (cmd[i]=='%' && cmd[i+1]=='%')
@@ -41,7 +41,7 @@ expand_and_exec(char *cmd)
       if (cmd[i]=='%' && cmd[i+1]=='n')
        {
          i++;
-         const gchar * name = gtk_entry_get_text(GTK_ENTRY(namebox));
+         const gchar *name = gtk_entry_get_text(GTK_ENTRY(namebox));
          g_string_append(expanded_cmd, name);
        }
       else