diff options
author | David Robillard <d@drobilla.net> | 2018-01-04 19:40:34 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-01-06 13:37:08 -0500 |
commit | 9f0cf036644f5062791e95998b17c8979f64a411 (patch) | |
tree | c980e69c02e33ab4f9ea21fd25fea7b7ff6bf25c /src | |
parent | 8d0bd383166f7ef80d79c551f4b8a829881a8460 (diff) | |
download | sord-9f0cf036644f5062791e95998b17c8979f64a411.tar.gz sord-9f0cf036644f5062791e95998b17c8979f64a411.tar.bz2 sord-9f0cf036644f5062791e95998b17c8979f64a411.zip |
Fix build with MSVC
Diffstat (limited to 'src')
-rw-r--r-- | src/sord.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -549,7 +549,7 @@ static inline bool sord_has_index(SordModel* model, SordOrder* order, int* n_prefix, bool graphs) { if (graphs) { - *order += GSPO; + *order = (SordOrder)(*order + GSPO); *n_prefix += 1; } |