From 082ee9740e4cc4e29f08faf6e11586ca4d186eb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Wed, 17 Apr 2019 12:33:03 +0200 Subject: [PATCH] Fix patch version in include/meson.build --- include/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/meson.build b/include/meson.build index bed5b75..ea6075f 100644 --- a/include/meson.build +++ b/include/meson.build @@ -16,7 +16,7 @@ cdata.set('LIBPSL_VERSION_NUMBER', ver.format( hex[major / 16], hex[major % 16], hex[minor / 16], hex[minor % 16], - hex[patch / 16], hex[minor % 16])) + hex[patch / 16], hex[patch % 16])) libpsl_h = configure_file( input : 'libpsl.h.in',