mirror of
https://git.wownero.com/asymptotically/docker-monero.git
synced 2024-08-15 01:03:28 +00:00
26 lines
698 B
Diff
26 lines
698 B
Diff
|
From 688b2a9f0eb7f949e25b0e98ad5f0ab8a198713f Mon Sep 17 00:00:00 2001
|
||
|
From: Matt Smith <matt@offtopica.uk>
|
||
|
Date: Mon, 29 Jun 2020 14:23:46 +0100
|
||
|
Subject: [PATCH 1/2] Remove __DATE__ in version message
|
||
|
|
||
|
---
|
||
|
src/base/kernel/Entry.cpp | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/base/kernel/Entry.cpp b/src/base/kernel/Entry.cpp
|
||
|
index ae2ac3ce..24ac5b99 100644
|
||
|
--- a/src/base/kernel/Entry.cpp
|
||
|
+++ b/src/base/kernel/Entry.cpp
|
||
|
@@ -51,7 +51,7 @@ namespace xmrig {
|
||
|
|
||
|
static int showVersion()
|
||
|
{
|
||
|
- printf(APP_NAME " " APP_VERSION "\n built on " __DATE__
|
||
|
+ printf(APP_NAME " " APP_VERSION
|
||
|
|
||
|
# if defined(__clang__)
|
||
|
" with clang " __clang_version__);
|
||
|
--
|
||
|
2.27.0
|
||
|
|