Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / multimedia / fxtv / patches / patch-ca
blobb4f837a74bd0a0660025adca278823436fecb8f3
1 $NetBSD: patch-ca,v 1.1 2008/01/16 13:53:55 jmcneill Exp $
3 Use correct sized types.
5 --- tvtypes.h.orig      2008-01-15 18:31:30.000000000 -0500
6 +++ tvtypes.h   2008-01-15 18:32:33.000000000 -0500
7 @@ -34,12 +34,12 @@
8  #include <math.h>
9  #include <string.h>
11 -typedef unsigned char  TV_UINT8;
12 -typedef signed   char  TV_INT8;
13 -typedef unsigned short TV_UINT16;
14 -typedef short          TV_INT16;
15 -typedef unsigned long  TV_UINT32;
16 -typedef long           TV_INT32;
17 +typedef uint8_t        TV_UINT8;
18 +typedef int8_t         TV_INT8;
19 +typedef uint16_t       TV_UINT16;
20 +typedef int16_t        TV_INT16;
21 +typedef uint32_t       TV_UINT32;
22 +typedef int32_t        TV_INT32;
24  typedef TV_INT32       TV_BOOL;