See patch.
Uwe. -- http://hermann-uwe.de | http://sigrok.org http://randomprojects.org | http://unmaintained-free-software.org
Move the main() function from flashrom.c to cli_classic.c. The file flsahrom.c is part if libflashrom and should thus not contain a main() function, that would break compilation of all frontends using libflashrom. Also, cli_classic.c is the right place anyway, as it's the main() of the CLI tool. Signed-off-by: Uwe Hermann <[email protected]> Index: cli_classic.c =================================================================== --- cli_classic.c (Revision 1416) +++ cli_classic.c (Arbeitskopie) @@ -444,3 +444,9 @@ programmer_shutdown(); return ret; } + +int main(int argc, char *argv[]) +{ + return cli_classic(argc, argv); +} + Index: flashrom.c =================================================================== --- flashrom.c (Revision 1416) +++ flashrom.c (Arbeitskopie) @@ -1796,11 +1796,6 @@ } } -int main(int argc, char *argv[]) -{ - return cli_classic(argc, argv); -} - /* FIXME: This function signature needs to be improved once doit() has a better * function signature. */
_______________________________________________ flashrom mailing list [email protected] http://www.flashrom.org/mailman/listinfo/flashrom
