summaryrefslogtreecommitdiff
path: root/extras/scsi_id/scsi_id.c
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2005-08-01 01:33:36 +0200
committerKay Sievers <kay.sievers@suse.de>2005-08-01 01:33:36 +0200
commit70721db6d7ba0d4f3ac5c17f2cedac056065ad8a (patch)
treef029523e975639453dcd027ee43a7bc742d0845c /extras/scsi_id/scsi_id.c
parent62a22c8d75550d5720019468c7a881a573bff22b (diff)
fix GGC signed pointer warnings and switch volume_id to stdint
Solaris uses volume_id now and they fiddled around with configure scripts to map the linux kernel int types. Adding the types locally to volume_id breaks the klibc build, so just switch to these ugly types and forget it. :) Signed-off-by: Kay Sievers <kay.sievers@suse.de>
Diffstat (limited to 'extras/scsi_id/scsi_id.c')
-rw-r--r--extras/scsi_id/scsi_id.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/extras/scsi_id/scsi_id.c b/extras/scsi_id/scsi_id.c
index 1b4234a40e..8e5172f93c 100644
--- a/extras/scsi_id/scsi_id.c
+++ b/extras/scsi_id/scsi_id.c
@@ -101,10 +101,9 @@ void log_message (int level, const char *format, ...)
return;
}
-static void set_str(char *to, const unsigned char *from, int count)
+static void set_str(char *to, const char *from, size_t count)
{
- int i, j;
- int len;
+ size_t i, j, len;
/* strip trailing whitespace */
len = strnlen(from, count);