mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
ee1fdf1921
by adding needed #includes, adding return statements to non-void functions and declaring functions returning a int instead of void if they do return an return code. - start using one central safemalloc. - do not mangle pointers which makes FvwmWinList work on amd64/7-STABLE again. PR: 132571 Submitted by: Bjoern A. Zeeb
20 lines
623 B
C
20 lines
623 B
C
--- ./modules/FvwmWinList/FvwmWinList.c.orig 1994-09-19 12:40:13.000000000 +0000
|
|
+++ ./modules/FvwmWinList/FvwmWinList.c 2009-03-11 09:42:51.000000000 +0000
|
|
@@ -101,7 +101,7 @@
|
|
Based on main() from FvwmIdent:
|
|
Copyright 1994, Robert Nation and Nobutaka Suzuki.
|
|
******************************************************************************/
|
|
-void main(int argc, char **argv)
|
|
+int main(int argc, char **argv)
|
|
{
|
|
char *temp, *s;
|
|
|
|
@@ -153,6 +153,7 @@
|
|
|
|
/* Recieve all messages from Fvwm */
|
|
EndLessLoop();
|
|
+ return (0);
|
|
}
|
|
|
|
/******************************************************************************
|