[Pkg-maemo-commits] r40 ./hildon-help/debian: * Fix build error by calling gdk_pixbuf_file_get_info in src/graphic.c with signed ints, instead of unsigned.

Jonny Lamb jonnylamb at jonnylamb.com
Mon Jul 23 01:42:41 UTC 2007


------------------------------------------------------------
revno: 40
committer: Jonny Lamb <jonnylamb at jonnylamb.com>
branch nick: hildon-help
timestamp: Mon 2007-07-23 02:42:41 +0100
message:
  * Fix build error by calling gdk_pixbuf_file_get_info in src/graphic.c with signed ints, instead of unsigned.
modified:
  debian/changelog
  src/graphic.c
-------------- next part --------------
=== modified file 'debian/changelog'
--- a/debian/changelog	2007-07-23 01:08:02 +0000
+++ b/debian/changelog	2007-07-23 01:42:41 +0000
@@ -9,8 +9,10 @@
   * Merge with trunk branch.
   * Bump up debhelper compat to 5.
   * Alter configure.ac to look for gtkhtml 3.14, not 3.8.
+  * Fix build error by calling gdk_pixbuf_get_file_info in src/graphic.c with
+    signed ints, instead of unsigned.
 
- -- Jonny Lamb <jonnylamb at jonnylamb.com>  Mon, 23 Jul 2007 02:07:09 +0100
+ -- Jonny Lamb <jonnylamb at jonnylamb.com>  Mon, 23 Jul 2007 02:40:44 +0100
 
 libhildonhelp (1.9.3-1) unstable; urgency=low
 

=== modified file 'src/graphic.c'
--- a/src/graphic.c	2007-07-02 15:27:37 +0000
+++ b/src/graphic.c	2007-07-23 01:42:41 +0000
@@ -46,7 +46,7 @@
 */
 gboolean graphic_tag( char *buf, size_t bufsize, const char *fname)
 {
-    guint w=0, h=0;
+    gint w=0, h=0;
     gboolean ok;
 
     if (!buf || bufsize <= 0 || !fname) return FALSE;



More information about the Pkg-maemo-commits mailing list