From aacebf533db7f212bf7de6500b272a26fe8ad4d2 Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Fri, 23 Jan 2009 01:55:40 +0000 Subject: [PATCH] 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@28989 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/isvolume.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/isvolume.cpp b/src/bin/isvolume.cpp index 489206ff9a..f8b2ef014d 100644 --- a/src/bin/isvolume.cpp +++ b/src/bin/isvolume.cpp @@ -34,7 +34,7 @@ usage() int -main(int32 argc, char** argv) +main(int argc, char** argv) { dev_t volumeDevice = dev_for_path("."); uint32 isVolumeFlags = 0;