public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* dlm: master - dlm: fix void arithmetic
@ 2009-06-23  8:21 Fabio M. Di Nitto
  0 siblings, 0 replies; only message in thread
From: Fabio M. Di Nitto @ 2009-06-23  8:21 UTC (permalink / raw)
  To: cluster-cvs-relay

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2178 bytes --]

Gitweb:        http://git.fedorahosted.org/git/dlm.git?p=dlm.git;a=commitdiff;h=e9d72aa3737d9233d761ab0abbecbc5257106326
Commit:        e9d72aa3737d9233d761ab0abbecbc5257106326
Parent:        c2048b9fb6b342ce754f479cbda38728de623617
Author:        Fabio M. Di Nitto <fdinitto@redhat.com>
AuthorDate:    Tue May 12 14:16:23 2009 +0200
Committer:     Fabio M. Di Nitto <fdinitto@redhat.com>
CommitterDate: Tue Jun 23 09:43:35 2009 +0200

dlm: fix void arithmetic

stable3/dlm/libdlmcontrol/main.c: In function ‘do_read’:
stable3/dlm/libdlmcontrol/main.c:19: warning: pointer of type ‘void *’ used in arithmetic
stable3/dlm/libdlmcontrol/main.c: In function ‘do_write’:
stable3/dlm/libdlmcontrol/main.c:36: warning: pointer of type ‘void *’ used in arithmetic

stable3/dlm/tool/main.c: In function ‘do_write’:
stable3/dlm/tool/main.c:362: warning: pointer of type ‘void *’ used in arithmetic

Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
---
 dlm/libdlmcontrol/main.c |    4 ++--
 dlm/tool/main.c          |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlm/libdlmcontrol/main.c b/dlm/libdlmcontrol/main.c
index 68f2e19..bbdaeb4 100644
--- a/dlm/libdlmcontrol/main.c
+++ b/dlm/libdlmcontrol/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) {
diff --git a/dlm/tool/main.c b/dlm/tool/main.c
index a972896..a64f909 100644
--- a/dlm/tool/main.c
+++ b/dlm/tool/main.c
@@ -361,7 +361,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)


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

only message in thread, other threads:[~2009-06-23  8:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-23  8:21 dlm: master - dlm: fix void arithmetic Fabio M. Di Nitto

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).