Having the first argument to main() non-int is an error in GCC 4.3.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28990 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz
2009-01-23 02:07:37 +00:00
parent aacebf533d
commit 0644703068
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ remove_attribute(int fd, const char* attribute, bool isPattern)
int
main(int32 argc, const char **argv)
main(int argc, const char **argv)
{
// Make sure we have the minimum number of arguments.
if (argc < 3)