summaryrefslogtreecommitdiff
path: root/src/Fl_arg.cxx
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2014-05-04 13:46:09 +0000
committerManolo Gouy <Manolo>2014-05-04 13:46:09 +0000
commit1882f90a942623b31109d84c09497c53c098b517 (patch)
tree4e04e6b752656a3339a3923b2abaf3874b25d626 /src/Fl_arg.cxx
parentf8852ab51dd7d847e9b1594aba4a6b51cde7be9d (diff)
Removed compilation warnings.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10145 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_arg.cxx')
-rw-r--r--src/Fl_arg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_arg.cxx b/src/Fl_arg.cxx
index 9fcdd38cb..184f52fc9 100644
--- a/src/Fl_arg.cxx
+++ b/src/Fl_arg.cxx
@@ -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;