Fixed warning I introduced before.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12887 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-05-29 11:33:45 +00:00
parent e8cd95e31a
commit 1b22c05ae8

View File

@ -482,7 +482,7 @@ strerror(int error)
}
sprintf(unknown, "Unknown %sError (%d)", system, error);
} else
sprintf(unknown, "No Error (%ld)", error);
sprintf(unknown, "No Error (%d)", error);
return unknown;
}