Removed compilation warnings.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10145 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy 2014-05-04 13:46:09 +00:00
parent f8852ab51d
commit 1882f90a94
2 changed files with 3 additions and 3 deletions

View File

@ -376,7 +376,7 @@ Fl_File_Browser::item_draw(void *p, // I - List item data
if (columns)
{
// Try clipping inside this column...
for (i = 0; i < column && columns[i]; i ++);
for (i = 0; i < column && columns[i]; i ++) { ; }
if (columns[i])
cW = columns[i];

View File

@ -435,7 +435,7 @@ without express or implied warranty.
static int ReadInteger(char* string, char** NextString)
{
register int Result = 0;
int Result = 0;
int Sign = 1;
if (*string == '+')
@ -458,7 +458,7 @@ int XParseGeometry(const char* string, int* x, int* y,
unsigned int* width, unsigned int* height)
{
int mask = NoValue;
register char *strind;
char *strind;
unsigned int tempWidth = 0, tempHeight = 0;
int tempX = 0, tempY = 0;
char *nextCharacter;