From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28783 invoked by alias); 23 Jun 2009 09:25:33 -0000 Received: (qmail 28776 invoked by alias); 23 Jun 2009 09:25:33 -0000 X-SWARE-Spam-Status: No, hits=-1.3 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_42,J_CHICKENPOX_52,SPF_HELO_PASS X-Spam-Status: No, hits=-1.3 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_42,J_CHICKENPOX_52,SPF_HELO_PASS X-Spam-Check-By: sourceware.org X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on bastion2.fedora.phx.redhat.com Subject: gfs2-utils: master - group: fix void arithmetic To: cluster-cvs-relay@redhat.com X-Project: Cluster Project X-Git-Module: gfs2-utils.git X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 5c78d91aac53e02f71826d526a0845851fe4bde3 X-Git-Newrev: 2c3bbdce5b28d2351e12cf0af273b97366d4a43f From: "Fabio M. Di Nitto" Message-Id: <20090623092459.B9E8B12037E@lists.fedorahosted.org> Date: Tue, 23 Jun 2009 09:25:00 -0000 X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 Mailing-List: contact cluster-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: cluster-cvs-owner@sourceware.org X-SW-Source: 2009-q2/txt/msg00731.txt.bz2 Gitweb: http://git.fedorahosted.org/git/gfs2-utils.git?p=gfs2-utils.git;a=commitdiff;h=2c3bbdce5b28d2351e12cf0af273b97366d4a43f Commit: 2c3bbdce5b28d2351e12cf0af273b97366d4a43f Parent: 5c78d91aac53e02f71826d526a0845851fe4bde3 Author: Fabio M. Di Nitto AuthorDate: Tue May 12 14:24:42 2009 +0200 Committer: Fabio M. Di Nitto CommitterDate: Tue Jun 23 11:18:56 2009 +0200 group: fix void arithmetic stable3/group/libgfscontrol/main.c: In function ‘do_read’: stable3/group/libgfscontrol/main.c:19: warning: pointer of type ‘void *’ used in arithmetic stable3/group/libgfscontrol/main.c: In function ‘do_write’: stable3/group/libgfscontrol/main.c:36: warning: pointer of type ‘void *’ used in arithmetic stable3/group/gfs_control/main.c: In function ‘do_write’: stable3/group/gfs_control/main.c:144: warning: pointer of type ‘void *’ used in arithmetic stable3/group/gfs_controld/main.c: In function ‘do_read’: stable3/group/gfs_controld/main.c:33: warning: pointer of type ‘void *’ used in arithmetic stable3/group/gfs_controld/main.c: In function ‘do_write’: stable3/group/gfs_controld/main.c:50: warning: pointer of type ‘void *’ used in arithmetic Signed-off-by: Fabio M. Di Nitto --- group/gfs_control/main.c | 2 +- group/gfs_controld/main.c | 4 ++-- group/libgfscontrol/main.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/group/gfs_control/main.c b/group/gfs_control/main.c index d1a3d3e..dff32e3 100644 --- a/group/gfs_control/main.c +++ b/group/gfs_control/main.c @@ -142,7 +142,7 @@ static int do_write(int fd, void *buf, size_t count) int rv, off = 0; retry: - rv = write(fd, buf + off, count); + rv = write(fd, (char *)buf + off, count); if (rv == -1 && errno == EINTR) goto retry; if (rv < 0) diff --git a/group/gfs_controld/main.c b/group/gfs_controld/main.c index f7f4da3..96657a8 100644 --- a/group/gfs_controld/main.c +++ b/group/gfs_controld/main.c @@ -30,7 +30,7 @@ int do_read(int fd, void *buf, size_t count) int rv, off = 0; while (off < count) { - rv = read(fd, buf + off, count - off); + rv = read(fd, (char *)buf + off, count - off); if (rv == 0) return -1; if (rv == -1 && errno == EINTR) @@ -47,7 +47,7 @@ int do_write(int fd, void *buf, size_t count) int rv, off = 0; retry: - rv = write(fd, buf + off, count); + rv = write(fd, (char *)buf + off, count); if (rv == -1 && errno == EINTR) goto retry; if (rv < 0) { diff --git a/group/libgfscontrol/main.c b/group/libgfscontrol/main.c index 8ce5a8a..c6eaf97 100644 --- a/group/libgfscontrol/main.c +++ b/group/libgfscontrol/main.c @@ -18,7 +18,7 @@ static int do_read(int fd, void *buf, size_t count) int rv, off = 0; while (off < count) { - rv = read(fd, buf + off, count - off); + rv = read(fd, (char *)buf + off, count - off); if (rv == 0) return -1; if (rv == -1 && errno == EINTR) @@ -35,7 +35,7 @@ static int do_write(int fd, void *buf, size_t count) int rv, off = 0; retry: - rv = write(fd, buf + off, count); + rv = write(fd, (char *)buf + off, count); if (rv == -1 && errno == EINTR) goto retry; if (rv < 0) {