From 1f4ad316b947bce01e13db0377d40bb06d552dfa Mon Sep 17 00:00:00 2001 From: adilger <adilger> Date: Fri, 1 Jun 2007 06:13:24 +0000 Subject: [PATCH] Branch b1_6 Don't actually need a cast for this. --- lustre/utils/liblustreapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/utils/liblustreapi.c b/lustre/utils/liblustreapi.c index 7fafd6fc83..fa65c1ec38 100644 --- a/lustre/utils/liblustreapi.c +++ b/lustre/utils/liblustreapi.c @@ -198,7 +198,7 @@ int llapi_lov_get_uuids(int fd, struct obd_uuid *uuidp, int *ost_count) } while ((fgets(buf, sizeof(buf), fp) != NULL) && index < *ost_count) { - if (sscanf(buf, "%d: %s", &index, (char *)&uuidp[index].uuid)<2) + if (sscanf(buf, "%d: %s", &index, uuidp[index].uuid) < 2) break; index++; } -- GitLab