namecoin / namecoin-legacy

Legacy client. New version here: https://github.com/namecoin/namecoin-core Note the release branch! - Official website:
https://namecoin.org
MIT License
448 stars 177 forks source link

Small Linux Build Fix #172

Closed phelixbtc closed 10 years ago

phelixbtc commented 10 years ago

suggested by PMC: https://forum.namecoin.info/viewtopic.php?p=11657#p11657

--- namecoin-nc0.3.75/src/db.h.orig     2014-06-19 13:05:55.000000000 +0200
+++ namecoin-nc0.3.75/src/db.h  2014-06-19 13:07:03.000000000 +0200
@@ -313,7 +313,7 @@
     Rewrite ()
     {
       Close ();
-      Rewrite (strFile);
+      return Rewrite (strFile);
     }

     /**
domob1812 commented 10 years ago

That's fine. You can turn it into a pull request and merge it. ACK.

phelixbtc commented 10 years ago

Solved by https://github.com/namecoin/namecoin/pull/174