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@28991 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2009-01-23 02:37:28 +00:00
parent 0644703068
commit 7e359a9b53
2 changed files with 2 additions and 2 deletions

View File

@ -2062,7 +2062,7 @@ TOSMagnify::ColorAtSelection()
int
main(long argc, char* argv[])
main(int argc, char* argv[])
{
int32 pixelCount = -1;

View File

@ -738,7 +738,7 @@ WorkspacesApp::ReadyToRun()
int
main(int32 argc, char **argv)
main(int argc, char **argv)
{
WorkspacesApp app;
app.Run();