Remove some trailing whitespace....
authorBill Meier <wmeier@newsguy.com>
Fri, 8 Nov 2013 03:33:01 +0000 (03:33 -0000)
committerBill Meier <wmeier@newsguy.com>
Fri, 8 Nov 2013 03:33:01 +0000 (03:33 -0000)
svn path=/trunk/; revision=53161

ui/software_update.c
ui/software_update.h

index 1e2d513232e3e43833c5674d563f0accd401f3aa..b027ed0f49c7761d101290d5458bb6077a4848a4 100644 (file)
@@ -37,7 +37,7 @@
  * - The architecture name (variable, one of "x86", "x86-64")
  * - The locale (fixed, "en-US)
  * - The update channel (variable, one of "development" or "stable") + .xml
- * 
+ *
  * Based on https://wiki.mozilla.org/Software_Update:Checking_For_Updates
  */
 
@@ -61,16 +61,16 @@ static GString *update_url_str = NULL;
 static const char *get_appcast_update_url(software_update_channel_e chan) {
     const char *chan_name;
     const char *arch = "x86";
-    
+
     if (!update_url_str) {
         update_url_str = g_string_new("");
     }
-    
+
     /* XXX Add WOW64 checks similar to version_info.c? */
     if (sizeof(arch) != 4) {
         arch = "x86-64";
     }
-    
+
     switch (chan) {
         case UPDATE_CHANNEL_DEVELOPMENT:
             chan_name = "development";
@@ -95,7 +95,7 @@ static const char *get_appcast_update_url(software_update_channel_e chan) {
 void
 software_update_init(void) {
     const char *update_url = get_appcast_update_url(prefs.gui_update_channel);
-    
+
     win_sparkle_set_registry_path("Software\\Wireshark\\WinSparkle Settings");
     win_sparkle_set_appcast_url(update_url);
     win_sparkle_set_automatic_check_for_updates(prefs.gui_update_enabled ? 1 : 0);
@@ -112,7 +112,7 @@ software_update_check(void) {
 
 /** Clean up software update checking.
  *
- * Does nothing on platforms that don't support software updates. 
+ * Does nothing on platforms that don't support software updates.
  */
 extern void software_update_cleanup(void) {
     win_sparkle_cleanup();
@@ -134,7 +134,7 @@ software_update_check(void) {
 
 /** Clean up software update checking.
  *
- * Does nothing on platforms that don't support software updates. 
+ * Does nothing on platforms that don't support software updates.
  */
 extern void software_update_cleanup(void) {
 }
index b78ee006636161c09094ea615a441eb5dc6ca6d1..2cc315ce6e8b99fe00432aa2935671c74db96927 100644 (file)
@@ -31,19 +31,19 @@ extern "C" {
 
 /** Initialize software updates.
  *
- * Does nothing on platforms that don't support software updates. 
+ * Does nothing on platforms that don't support software updates.
  */
 extern void software_update_init(void);
 
 /** Force a software update check.
  *
- * Does nothing on platforms that don't support software updates. 
+ * Does nothing on platforms that don't support software updates.
  */
 extern void software_update_check(void);
 
 /** Clean up software update checking.
  *
- * Does nothing on platforms that don't support software updates. 
+ * Does nothing on platforms that don't support software updates.
  */
 extern void software_update_cleanup(void);