Magellan Linux

Contents of /trunk/hal/patches/hal-0.5.10-fix-implicit-pointer-conversion.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 597 - (show annotations) (download)
Mon May 19 19:05:19 2008 UTC (15 years, 11 months ago) by niro
File size: 834 byte(s)
-gentoo patches

1 From d41b8e0699153d9acc9334cc1e8731b01b8738e3 Mon Sep 17 00:00:00 2001
2 From: Michael Biebl <mbiebl@gmail.com>
3 Date: Mon, 3 Dec 2007 13:50:51 +0100
4 Subject: [PATCH] fix implicit pointer conversion
5
6 Fixed missing include in hal-disable-polling.c which leading to an
7 implicit pointer conversion which in turn can lead to problems.
8 Please see [1] for more details.
9
10 [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%23447657
11 ---
12 tools/hal-disable-polling.c | 1 +
13 1 files changed, 1 insertions(+), 0 deletions(-)
14
15 diff --git a/tools/hal-disable-polling.c b/tools/hal-disable-polling.c
16 index 90afc4e..20bcd49 100644
17 --- a/tools/hal-disable-polling.c
18 +++ b/tools/hal-disable-polling.c
19 @@ -28,6 +28,7 @@
20 # include <config.h>
21 #endif
22
23 +#include <stdlib.h>
24 #include <stdio.h>
25 #include <limits.h>
26 #include <stdlib.h>
27 --
28 1.5.3.7
29