diff options
author | David Robillard <d@drobilla.net> | 2021-05-29 14:10:27 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-05-31 11:37:53 -0400 |
commit | 47ecf6ce2b538a4c8bacb71dd923bc733a075892 (patch) | |
tree | e310fa2d1799ec54fa108fe8b90974ba3943b01c /src/serdi.c | |
parent | 35e1cea484c860fba9fc702a4e4ea9d284b26f08 (diff) | |
download | serd-47ecf6ce2b538a4c8bacb71dd923bc733a075892.tar.gz serd-47ecf6ce2b538a4c8bacb71dd923bc733a075892.tar.bz2 serd-47ecf6ce2b538a4c8bacb71dd923bc733a075892.zip |
Remove "static inline" for functions in implementation files
This is just noise since these are static functions local to a C compilation
unit.
Diffstat (limited to 'src/serdi.c')
-rw-r--r-- | src/serdi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/serdi.c b/src/serdi.c index 86597cbf..a1d8097e 100644 --- a/src/serdi.c +++ b/src/serdi.c @@ -134,7 +134,7 @@ quiet_error_sink(void* handle, const SerdError* e) return SERD_SUCCESS; } -static inline FILE* +static FILE* serd_fopen(const char* path, const char* mode) { FILE* fd = fopen(path, mode); |