~hp/lv2lint

0309c057e26c836b0859b4147fa4a6df987c17c2 — Hanspeter Portner 1 year, 9 months ago df956d4
fix typo logging in logging facility
2 files changed, 2 insertions(+), 2 deletions(-)

M meson_options.txt
M src/lv2lint.c
M meson_options.txt => meson_options.txt +1 -1
@@ 4,4 4,4 @@
option('online-tests', type : 'feature', value : 'disabled')
option('elf-tests', type : 'feature', value : 'disabled')
option('x11-tests', type : 'feature', value : 'disabled')
option('version', type : 'string', value : '0.1.39')
option('version', type : 'string', value : '0.1.41')

M src/lv2lint.c => src/lv2lint.c +1 -1
@@ 679,7 679,7 @@ log_vprintf(void *data, LV2_URID type, const char *fmt,
		shm_pause(app->shm);
	}

	if(asprintf(&buf, fmt, args) == -1)
	if(vasprintf(&buf, fmt, args) == -1)
	{
		buf = NULL;
	}