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:
@@ -2062,7 +2062,7 @@ TOSMagnify::ColorAtSelection()
|
|||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
main(long argc, char* argv[])
|
main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
int32 pixelCount = -1;
|
int32 pixelCount = -1;
|
||||||
|
|
||||||
|
|||||||
@@ -738,7 +738,7 @@ WorkspacesApp::ReadyToRun()
|
|||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
main(int32 argc, char **argv)
|
main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
WorkspacesApp app;
|
WorkspacesApp app;
|
||||||
app.Run();
|
app.Run();
|
||||||
|
|||||||
Reference in New Issue
Block a user