aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-sampler.lv2/sampler.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-09-09 13:20:41 -0400
committerDavid Robillard <d@drobilla.net>2022-09-09 13:22:42 -0400
commita459db9bf692e11c2d4ecb6047c2878cdcbeb2bd (patch)
treead2c552f5fc43ba99a35d93f7d9ab58f5abef695 /plugins/eg-sampler.lv2/sampler.c
parent24327302723df7c9d32d9a540cd1f586489ea616 (diff)
downloadlv2-a459db9bf692e11c2d4ecb6047c2878cdcbeb2bd.tar.xz
Use uppercase integer literal suffixes
Diffstat (limited to 'plugins/eg-sampler.lv2/sampler.c')
-rw-r--r--plugins/eg-sampler.lv2/sampler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/eg-sampler.lv2/sampler.c b/plugins/eg-sampler.lv2/sampler.c
index 9ec3cf4..d870a07 100644
--- a/plugins/eg-sampler.lv2/sampler.c
+++ b/plugins/eg-sampler.lv2/sampler.c
@@ -134,7 +134,7 @@ load_sample(LV2_Log_Logger* logger, const char* path, const int sample_rate)
return NULL;
}
- sf_seek(sndfile, 0ul, SEEK_SET);
+ sf_seek(sndfile, 0UL, SEEK_SET);
sf_read_float(sndfile, data, info->frames * info->channels);
sf_close(sndfile);