public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-video/dfbsee/files: dfbsee-0.7.4-standardtypes.patch
@ 2008-10-31 11:31 Alexis Ballier (aballier)
  0 siblings, 0 replies; only message in thread
From: Alexis Ballier (aballier) @ 2008-10-31 11:31 UTC (permalink / raw
  To: gentoo-commits

aballier    08/10/31 11:31:34

  Added:                dfbsee-0.7.4-standardtypes.patch
  Log:
  Use standard types instead of __ prefixed ones, fixes bug #235783, stop using bindnow-flags, bug #226983, and tc-export CC
  (Portage version: 2.2_rc12/cvs/Linux 2.6.27.4 x86_64)

Revision  Changes    Path
1.1                  media-video/dfbsee/files/dfbsee-0.7.4-standardtypes.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/dfbsee/files/dfbsee-0.7.4-standardtypes.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/dfbsee/files/dfbsee-0.7.4-standardtypes.patch?rev=1.1&content-type=text/plain

Index: dfbsee-0.7.4-standardtypes.patch
===================================================================
Index: DFBSee-0.7.4/src/rotate.c
===================================================================
--- DFBSee-0.7.4.orig/src/rotate.c
+++ DFBSee-0.7.4/src/rotate.c
@@ -110,10 +110,10 @@ rotate (void         *dest,
       switch (bpp)
         {
         case 2:
-          ROTATE_LEFT (__u16 *)
+          ROTATE_LEFT (uint16_t *)
           break;
         case 4:
-          ROTATE_LEFT (__u32 *)
+          ROTATE_LEFT (uint32_t *)
           break;
         default:
           break;
@@ -125,10 +125,10 @@ rotate (void         *dest,
       switch (bpp)
         {        
         case 2:
-          ROTATE_RIGHT (__u16 *)
+          ROTATE_RIGHT (uint16_t *)
           break;
         case 4:
-          ROTATE_RIGHT (__u32 *)
+          ROTATE_RIGHT (uint32_t *)
           break;
         default:
           break;
@@ -139,10 +139,10 @@ rotate (void         *dest,
       switch (bpp)
         {
         case 2:
-          ROTATE_HALF (__u16 *)
+          ROTATE_HALF (uint16_t *)
           break;
         case 4:
-           ROTATE_HALF (__u32 *)
+           ROTATE_HALF (uint32_t *)
           break;
         default:
           break;






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-10-31 11:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-31 11:31 [gentoo-commits] gentoo-x86 commit in media-video/dfbsee/files: dfbsee-0.7.4-standardtypes.patch Alexis Ballier (aballier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox