chiark
/
gitweb
/
~mdw
/
checkpath
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Make flags be unsigned.
[checkpath]
/
chkpath.c
diff --git
a/chkpath.c
b/chkpath.c
index e90b0d78c019b124e9fdc84713766f7181dd17ff..250e9229bfee04da13d204bec1693c29a1cf8e36 100644
(file)
--- a/
chkpath.c
+++ b/
chkpath.c
@@
-1,6
+1,6
@@
/* -*-c-*-
*
/* -*-c-*-
*
- * $Id: chkpath.c,v 1.
1 1999/04/06 20:12:07
mdw Exp $
+ * $Id: chkpath.c,v 1.
2 2001/01/25 22:16:02
mdw Exp $
*
* Check a user's file search path
*
*
* Check a user's file search path
*
@@
-29,8
+29,11
@@
/*----- Revision history --------------------------------------------------*
*
* $Log: chkpath.c,v $
/*----- Revision history --------------------------------------------------*
*
* $Log: chkpath.c,v $
- * Revision 1.1 1999/04/06 20:12:07 mdw
- * Initial revision
+ * Revision 1.2 2001/01/25 22:16:02 mdw
+ * Make flags be unsigned.
+ *
+ * Revision 1.1.1.1 1999/04/06 20:12:07 mdw
+ * Import new project.
*
*/
*
*/
@@
-109,10
+112,8
@@
int main(int argc, char *argv[])
struct chkpath cp;
int f = 0;
struct chkpath cp;
int f = 0;
- enum {
- f_print = 1,
- f_colon = 2
- };
+#define f_print 1u
+#define f_colon 2u
/* --- Initialize the world --- */
/* --- Initialize the world --- */