[pulseaudio-commits] r1919 - /branches/lennart/src/pulsecore/gccmacro.h
svnmailer-noreply at 0pointer.de
svnmailer-noreply at 0pointer.de
Sun Sep 30 06:19:27 PDT 2007
Author: tanuk
Date: Sun Sep 30 15:19:26 2007
New Revision: 1919
URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=1919&root=pulseaudio&view=rev
Log:
Fixed PA_GCC_CONST definition.
Modified:
branches/lennart/src/pulsecore/gccmacro.h
Modified: branches/lennart/src/pulsecore/gccmacro.h
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/branches/lennart/src/pulsecore/gccmacro.h?rev=1919&root=pulseaudio&r1=1918&r2=1919&view=diff
==============================================================================
--- branches/lennart/src/pulsecore/gccmacro.h (original)
+++ branches/lennart/src/pulsecore/gccmacro.h Sun Sep 30 15:19:26 2007
@@ -70,9 +70,9 @@
#ifndef PA_GCC_CONST
#ifdef __GNUCC__
-#define PA_GCC_CONST __attribute__ ((pure))
+#define PA_GCC_CONST __attribute__ ((const))
#else
-/** This function's return value depends only the arguments list (stricter version of PA_GCC_CONST) **/
+/** This function's return value depends only the arguments list (stricter version of PA_GCC_PURE) **/
#define PA_GCC_CONST
#endif
#endif
More information about the pulseaudio-commits
mailing list