Avoid warning about insecure format with clang.

This commit is contained in:
Nathan Whitehorn 2013-12-14 22:28:32 +00:00
parent 92be6c51f0
commit e14376e4dd

View File

@ -100,7 +100,7 @@ cn_drvinit(void *unused)
sizeof(output)) == -1)
return;
if (strlen(output) > 0)
tty_makealias(tp, output);
tty_makealias(tp, "%s", output);
}
}