Skip to content
Snippets Groups Projects
Commit 42cda5a9 authored by Walter Poxon's avatar Walter Poxon
Browse files

b=15732

i=walter

Land andreas' fix for catamount build errors
parent 6a33da12
No related branches found
No related tags found
No related merge requests found
......@@ -214,8 +214,8 @@ int class_attach(struct lustre_cfg *lcfg)
len = strlen(uuid);
if (len >= sizeof(obd->obd_uuid)) {
CERROR("uuid must be < "LPSZ" bytes long\n",
sizeof(obd->obd_uuid));
CERROR("uuid must be < %d bytes long\n",
(int)sizeof(obd->obd_uuid));
GOTO(out, rc = -EINVAL);
}
memcpy(obd->obd_uuid.uuid, uuid, len);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment