Author: rmottola
Date: Fri Mar 18 10:04:17 2016
New Revision: 39562
URL: http://svn.gna.org/viewcvs/gnustep?rev=39562&view=rev
Log:
cast to fix watrnings
Modified:
libs/base/trunk/Tools/autogsdoc.m
Modified: libs/base/trunk/Tools/autogsdoc.m
URL:
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Tools/autogsdoc.m?rev=39562&r1=39561&r2=39562&view=diff
==============================================================================
--- libs/base/trunk/Tools/autogsdoc.m (original)
+++ libs/base/trunk/Tools/autogsdoc.m Fri Mar 18 10:04:17 2016
@@ -1,7 +1,7 @@
/** This tool produces GSDoc files from source files.
<title>Autogsdoc ... a tool to make documentation from source code</title>
- Copyright (C) 2001 Free Software Foundation, Inc.
+ Copyright (C) 2001-2016 Free Software Foundation, Inc.
Written by: Richard Frith-Macdonald <[email protected]>
Created: October 2001
@@ -2266,7 +2266,7 @@
options: NSLiteralSearch];
if (r.length == 0)
{
- NSLog(@"Missing '#' in href at %lu", replace.location);
+ NSLog(@"Missing '#' in href at %lu", (unsigned
long)replace.location);
break;
}
href = [href substringFromIndex: NSMaxRange(r)];
@@ -2278,7 +2278,7 @@
options: NSLiteralSearch];
if (r.length == 0)
{
- NSLog(@"Missing '$' in href at %lu", replace.location);
+ NSLog(@"Missing '$' in href at %lu", (unsigned
long)replace.location);
break;
}
type = [href substringToIndex: r.location];
@@ -2318,7 +2318,7 @@
if (unit == nil)
{
NSLog(@"Missing unit name terminator at %lu",
- replace.location);
+ (unsigned long)replace.location);
break;
}
}
_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs