Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2012-07-20 20:08:29 +0400
committerGregory Maxwell <greg@xiph.org>2012-07-21 02:02:55 +0400
commitde4a2ddd06200e24b91b3270dfed02d5e31314c0 (patch)
treeb2bf7b5ac33730c64356b19237d3b578f6b7541b /include
parent22f7788ac1b5b7c646c93c2597374265a5a5fd8b (diff)
Replace the remaining instances of restrict with OPUS_RESTRICT.
The usage of restrict in include/opus_custom.h was missed by the prior commit replacing this keyword with a macro. Also fixes some prototype/function agreement with respect to restrict.
Diffstat (limited to 'include')
-rw-r--r--include/opus_custom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/opus_custom.h b/include/opus_custom.h
index d4d33976..e7861d6f 100644
--- a/include/opus_custom.h
+++ b/include/opus_custom.h
@@ -318,7 +318,7 @@ OPUS_CUSTOM_EXPORT OPUS_WARN_UNUSED_RESULT int opus_custom_decode(
* by a convenience macro.
* @see opus_genericctls
*/
-OPUS_CUSTOM_EXPORT int opus_custom_decoder_ctl(OpusCustomDecoder * restrict st, int request, ...) OPUS_ARG_NONNULL(1);
+OPUS_CUSTOM_EXPORT int opus_custom_decoder_ctl(OpusCustomDecoder * OPUS_RESTRICT st, int request, ...) OPUS_ARG_NONNULL(1);
/**@}*/