aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2017-04-10 08:38:39 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2017-04-10 08:38:55 +0200
commit703202180bde4e464039e00d796797ed9aa32f68 (patch)
treea7b99145a317e6bf0db50b363960c7824859c0d8 /src
parent88799ea1b1c08f4bc1a487c9e3c2effd5e1650ae (diff)
parentdd7e43e438da91a06620e5bc6855e6e16f75e1d5 (diff)
downloadbitcoin-703202180bde4e464039e00d796797ed9aa32f68.tar.xz
Merge #10168: Fix build warning from #error text
dd7e43e Fix build warning from #error text (John Newbery) Tree-SHA512: a806181ec05ad599c45bd455900d6ad569c601e5cc495d16ec0db538edef4523a5229d1c84d310bb877b1bb81b8a8fc15a3a73da78688109042f18a57db5bd70
Diffstat (limited to 'src')
-rw-r--r--src/clientversion.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clientversion.h b/src/clientversion.h
index 8fde6daca5..3d5392619b 100644
--- a/src/clientversion.h
+++ b/src/clientversion.h
@@ -11,7 +11,7 @@
// Check that required client information is defined
#if !defined(CLIENT_VERSION_MAJOR) || !defined(CLIENT_VERSION_MINOR) || !defined(CLIENT_VERSION_REVISION) || !defined(CLIENT_VERSION_BUILD) || !defined(CLIENT_VERSION_IS_RELEASE) || !defined(COPYRIGHT_YEAR)
-#error Client version information missing: wasn't defined by bitcoin-config.h nor defined any other way
+#error Client version information missing: version is not defined by bitcoin-config.h or in any other way
#endif
/**