diff mcabber/libjabber/snprintf.c @ 414:ec86d759ed54

Trailing whitespace cleanup No real change.
author Mikael Berthe <mikael@lilotux.net>
date Tue, 30 Aug 2005 22:26:19 +0200
parents bf3d6e241714
children c3ae9251c197
line wrap: on
line diff
--- a/mcabber/libjabber/snprintf.c	Tue Aug 30 21:25:16 2005 +0200
+++ b/mcabber/libjabber/snprintf.c	Tue Aug 30 22:26:19 2005 +0200
@@ -6,7 +6,7 @@
  * are met:
  *
  * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer. 
+ *    notice, this list of conditions and the following disclaimer.
  *
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in
@@ -364,7 +364,7 @@
         *is_negative = (num < 0);
 
         /*
-         * On a 2's complement machine, negating the most negative integer 
+         * On a 2's complement machine, negating the most negative integer
          * results in a number that cannot be represented as a signed integer.
          * Here is what we do to obtain the number's magnitude:
          *      a. add 1 to the number
@@ -381,7 +381,7 @@
     }
 
     /*
-     * We use a do-while loop so that we write at least 1 digit 
+     * We use a do-while loop so that we write at least 1 digit
      */
     do {
         register u_wide_int new_magnitude = magnitude / 10;
@@ -802,11 +802,11 @@
                 break;
 
                 /*
-                 * Always extract the argument as a "char *" pointer. We 
-                 * should be using "void *" but there are still machines 
+                 * Always extract the argument as a "char *" pointer. We
+                 * should be using "void *" but there are still machines
                  * that don't understand it.
                  * If the pointer size is equal to the size of an unsigned
-                 * integer we convert the pointer to a hex number, otherwise 
+                 * integer we convert the pointer to a hex number, otherwise
                  * we print "%p" to indicate that we don't handle "%p".
                  */
             case 'p':
@@ -864,7 +864,7 @@
                 PAD(min_width, s_len, pad_char);
             }
             /*
-             * Print the string s. 
+             * Print the string s.
              */
             for (i = s_len; i != 0; i--) {
                 INS_CHAR(*s, sp, bep, cc);