All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kpartx compilation fix
@ 2005-12-09 12:07 Hannes Reinecke
  0 siblings, 0 replies; only message in thread
From: Hannes Reinecke @ 2005-12-09 12:07 UTC (permalink / raw)
  To: christophe varoqui; +Cc: device-mapper development

[-- Attachment #1: Type: text/plain, Size: 303 bytes --]

Hi Christophe,

this is a small compile fix for dasd.c; a pointer to unsigned char
should be of type unsigned char ...

Cheers,

Hannes
-- 
Dr. Hannes Reinecke			hare@suse.de
SuSE Linux Products GmbH		S390 & zSeries
Maxfeldstraße 5				+49 911 74053 688
90409 Nürnberg				http://www.suse.de

[-- Attachment #2: kpartx-dasd-compilation-fix.patch --]
[-- Type: text/x-patch, Size: 497 bytes --]

[kpartx] compilation fixes for dasd.c

If a pointer points to an unsigned char it should be of the correct
type.

Signed-off-by: Hannes Reinecke <hare@suse.de>

diff --git a/kpartx/dasd.c b/kpartx/dasd.c
--- a/kpartx/dasd.c
+++ b/kpartx/dasd.c
@@ -52,7 +52,7 @@ read_dasd_pt(int fd, struct slice all, s
 	struct hd_geometry geo;
 	char type[5] = {0,};
 	char name[7] = {0,};
-	char *label_raw;
+	unsigned char *label_raw;
 	volume_label_t vlabel;
 	unsigned char *data = NULL;
 	unsigned int blk;

[-- Attachment #3: Type: text/plain, Size: 0 bytes --]



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

only message in thread, other threads:[~2005-12-09 12:07 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-09 12:07 [PATCH] kpartx compilation fix Hannes Reinecke

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.