comparison toys/toylist.h @ 33:bc91b57308dc

Fix a warning.
author Rob Landley <rob@landley.net>
date Sat, 25 Nov 2006 13:45:39 -0500
parents 993eab821bd5
children c1f4f9101af7
comparison
equal deleted inserted replaced
32:993eab821bd5 33:bc91b57308dc
19 #else 19 #else
20 #define NEWTOY(name, opts, flags) int name##_main(void); 20 #define NEWTOY(name, opts, flags) int name##_main(void);
21 #define OLDTOY(name, oldname, opts, flags) 21 #define OLDTOY(name, oldname, opts, flags)
22 22
23 struct df_data { 23 struct df_data {
24 struct string_list *fstype; 24 struct arg_list *fstype;
25 long units; 25 long units;
26 }; 26 };
27 27
28 union toy_union { 28 union toy_union {
29 struct df_data df; 29 struct df_data df;