[uClibc-cvs] uClibc/libc/sysdeps/linux/sh/bits profil-counter.h,1.1,1.2

Erik Andersen andersen at codepoet.org
Fri Mar 7 12:05:51 UTC 2003


Update of /var/cvs/uClibc/libc/sysdeps/linux/sh/bits
In directory winder:/tmp/cvs-serv11200/libc/sysdeps/linux/sh/bits

Modified Files:
	profil-counter.h 
Log Message:
Patch from Stefan Allius:
fix a couple of gcc 3.3 compiler warnings in gmon.c


Index: profil-counter.h
===================================================================
RCS file: /var/cvs/uClibc/libc/sysdeps/linux/sh/bits/profil-counter.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- profil-counter.h	3 Mar 2003 20:58:33 -0000	1.1
+++ profil-counter.h	7 Mar 2003 12:05:48 -0000	1.2
@@ -23,6 +23,11 @@
 profil_counter (int signo, int _a2, int _a3, int _a4, struct sigcontext sc)
 {
   void *pc;
+  (void) signo;
+  (void)_a2;
+  (void)_a3;
+  (void)_a4;
+  
   pc = (void *) sc.sc_pc;
   profil_count (pc);
 }




More information about the uClibc-cvs mailing list