[dm-devel] [PATCH] DM: dm-ioctl.c: change an int* to a size_t*

Kevin Corry kevcorry at us.ibm.com
Thu Jun 3 14:54:41 UTC 2004


dm-ioctl.c: Use a size_t* instead of an int* in list_version_get_needed().
size_t and int are not the same size on all architectures.

--- diff/drivers/md/dm-ioctl.c	2004-06-03 09:46:39.000000000 -0500
+++ source/drivers/md/dm-ioctl.c	2004-06-03 09:48:40.000000000 -0500
@@ -417,9 +417,9 @@
 	return 0;
 }
 
-static void list_version_get_needed(struct target_type *tt, void *param)
+static void list_version_get_needed(struct target_type *tt, void *needed_param)
 {
-    int *needed = param;
+    size_t *needed = needed_param;
 
     *needed += strlen(tt->name);
     *needed += sizeof(tt->version);



More information about the dm-devel mailing list