summaryrefslogtreecommitdiff
path: root/src/flpsed.cxx
diff options
context:
space:
mode:
authorJohannes Hofmann <johannes.hofmann@gmx.de>2005-04-29 16:08:44 +0000
committerJohannes Hofmann <johannes.hofmann@gmx.de>2005-04-29 16:08:44 +0000
commitbf78c4beddff37a3d5ec2060d7bf2ca97f018839 (patch)
treedceb68fa3d506e2dc0cb7a6fcc6a9a208171063f /src/flpsed.cxx
parent135e3f3c148de50a755aa649300f98bab7cd08e7 (diff)
getopt returns int not char.
getopt returns int not char.
Diffstat (limited to 'src/flpsed.cxx')
-rw-r--r--src/flpsed.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/flpsed.cxx b/src/flpsed.cxx
index 6e4d968..6b87d30 100644
--- a/src/flpsed.cxx
+++ b/src/flpsed.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: flpsed.cxx,v 1.33 2005/04/07 17:03:14 hofmann Exp $"
+// "$Id: flpsed.cxx,v 1.34 2005/04/29 18:08:44 hofmann Exp $"
//
// flpsed program.
//
@@ -315,8 +315,8 @@ void usage() {
#define TV_LEN 256
int main(int argc, char** argv) {
- char c, *sep, *tmp, **my_argv;
- int err, bflag = 0, dflag = 0;
+ char *sep, *tmp, **my_argv;
+ int c, err, bflag = 0, dflag = 0;
Fl_Window *win;
Fl_Menu_Bar *m;
struct {char *tag; char *value;} tv[TV_LEN];