Use the macro GLib provides for byte-swapping as it can be optimized.
authorEmmanuele Bassi <ebassi@gnome.org>
Thu, 17 Apr 2008 11:29:26 +0000 (11:29 +0000)
committerEmmanuele Bassi <ebassi@src.gnome.org>
Thu, 17 Apr 2008 11:29:26 +0000 (11:29 +0000)
2008-04-17  Emmanuele Bassi  <ebassi@gnome.org>

* glib/gchecksum.c:
(sha_byte_reverse): Use the macro GLib provides for byte-swapping
as it can be optimized.

(g_checksum_update): Fix a compiler warning.

svn path=/trunk/; revision=6861

ChangeLog
glib/gchecksum.c

index 23f6821..0ba6110 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-04-17  Emmanuele Bassi  <ebassi@gnome.org>
+
+       * glib/gchecksum.c:
+       (sha_byte_reverse): Use the macro GLib provides for byte-swapping
+       as it can be optimized.
+       
+       (g_checksum_update): Fix a compiler warning.
+
 2008-04-15  Mukund Sivaraman  <muks@mukund.org>
 
        * gio/gfile.c: Fixed typos in gtk-doc comments.
index ded85ca..0b0ce54 100644 (file)
@@ -122,10 +122,7 @@ sha_byte_reverse (guint32 *buffer,
   length /= sizeof (guint32);
   while (length--)
     {
-      *buffer = ((guint32) (((*buffer & (guint32) 0x000000ffU) << 24) |
-                            ((*buffer & (guint32) 0x0000ff00U) <<  8) |
-                            ((*buffer & (guint32) 0x00ff0000U) >>  8) |
-                            ((*buffer & (guint32) 0xff000000U) >> 24)));
+      *buffer = GUINT32_SWAP_LE_BE (*buffer);
       ++buffer;
     }
 }
@@ -1204,7 +1201,7 @@ g_checksum_update (GChecksum    *checksum,
   g_return_if_fail (data != NULL);
 
   if (length < 0)
-    length = strlen (data);
+    length = strlen ((const gchar *) data);
 
   if (checksum->digest_str)
     {