Fix two typos "requires an string value"

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2013-01-07 10:44:33 +10:00
parent 4e13dd9014
commit 519d183d78
2 changed files with 2 additions and 2 deletions

View File

@ -515,7 +515,7 @@ ParseOptionValue(int scrnIndex, XF86OptionPtr options, OptionInfoPtr p,
if (*s == '\0') {
if (markUsed) {
xf86DrvMsg(scrnIndex, X_WARNING,
"Option \"%s\" requires an string value\n",
"Option \"%s\" requires a string value\n",
p->name);
}
p->found = FALSE;

View File

@ -762,7 +762,7 @@ ParseOptionValue(int scrnIndex, pointer options, OptionInfoPtr p)
case OPTV_STRING:
if (*s == '\0') {
winDrvMsg(scrnIndex, X_WARNING,
"Option \"%s\" requires an string value\n", p->name);
"Option \"%s\" requires a string value\n", p->name);
p->found = FALSE;
}
else {