]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
DARWIN sync: param name.
authorNicholas Nethercote <njn@valgrind.org>
Wed, 20 May 2009 07:36:18 +0000 (07:36 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Wed, 20 May 2009 07:36:18 +0000 (07:36 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10045

coregrind/pub_core_debuglog.h

index 3a34fd7b4b085b680eac3853f9779e70561c359b..489aa0c0332f037ad9a76fe32adfb56262dae28f 100644 (file)
@@ -74,11 +74,11 @@ void VG_(debugLog) ( Int level, const HChar* modulename,
                                 const HChar* format, ... );
 
 
-/* A simple vprintf().  For each emitted byte, (*send) is called with
+/* A simple vprintf().  For each emitted byte, (*send_fn) is called with
    that byte, and 'send_arg2' as its second param. */
 extern
 UInt VG_(debugLog_vprintf) ( 
-        void (*send)(HChar,void*),   /* byte sink */
+        void (*send_fn)(HChar,void*),/* byte sink */
         void* send_arg2,             /* 2nd arg for byte sink */
         const HChar *format, 
         va_list vargs