Magellan Linux

Contents of /trunk/hal/patches/hal-0.5.10-add-missing-semicolon-lost-in-the-cleanup.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: 799 byte(s)
-gentoo patches

1 From 7336d3d3a82351e0d6476a1c2b3670aa08acc663 Mon Sep 17 00:00:00 2001
2 From: Guillem Jover <guillem.jover@nokia.com>
3 Date: Wed, 26 Dec 2007 11:15:58 +0100
4 Subject: [PATCH] add missing semicolon lost in the cleanup
5
6 Added missing semicolon lost in the cleanup.
7 ---
8 hald/linux/addons/addon-omap-backlight.c | 2 +-
9 1 files changed, 1 insertions(+), 1 deletions(-)
10
11 diff --git a/hald/linux/addons/addon-omap-backlight.c b/hald/linux/addons/addon-omap-backlight.c
12 index d85df79..bb56594 100644
13 --- a/hald/linux/addons/addon-omap-backlight.c
14 +++ b/hald/linux/addons/addon-omap-backlight.c
15 @@ -77,7 +77,7 @@ read_backlight (struct backlight * bl)
16 if (fd < 0)
17 return -1;
18
19 - ret = read (fd, buffer, NUM_BUF_LEN)
20 + ret = read (fd, buffer, NUM_BUF_LEN);
21 close (fd);
22
23 if (ret >= 0)
24 --
25 1.5.3.7
26