diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-24 09:45:16 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-24 09:45:16 +0000 |
commit | 6631be4fd58487f3118a2b19fb85e570962be1fd (patch) | |
tree | 581315ad1d426098dae957f556d05c254910a912 /rsc/source | |
parent | 9356f042d1608c68e615e806404463174a751cb3 (diff) |
INTEGRATION: CWS sb56 (1.13.6); FILE MERGED
2006/07/07 09:16:07 sb 1.13.6.1: #i67105# Made code compile (warning-free) with debug=x.
Diffstat (limited to 'rsc/source')
-rw-r--r-- | rsc/source/rscpp/cpp3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rsc/source/rscpp/cpp3.c b/rsc/source/rscpp/cpp3.c index 46e212c16d31..0a61bd8e1867 100644 --- a/rsc/source/rscpp/cpp3.c +++ b/rsc/source/rscpp/cpp3.c @@ -4,9 +4,9 @@ * * $RCSfile: cpp3.c,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: hr $ $Date: 2006-06-22 10:08:11 $ + * last change: $Author: ihi $ $Date: 2006-08-24 10:45:16 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -330,7 +330,7 @@ dooptions(int argc, char** argv) case 'X': /* Debug */ debug = (isdigit(*ap)) ? atoi(ap) : 1; #if (HOST == SYS_VMS || HOST == SYS_UNIX) - signal(SIGINT, abort); /* Trap "interrupt" */ + signal(SIGINT, (void (*)(int)) abort); /* Trap "interrupt" */ #endif fprintf(stderr, "Debug set to %d\n", debug); break; |