Skip to content

Commit

Permalink
Merge pull request #24 from navcoin/master
Browse files Browse the repository at this point in the history
merging in navcoin#549
  • Loading branch information
proletesseract committed Jul 3, 2019
2 parents 524e054 + ee83269 commit daf5afd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/compat/glibc_compat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#include <config/navcoin-config.h>
#endif

#include <assert.h>
#include <cstddef>
#include <cstdint>
#include <errno.h>
Expand Down Expand Up @@ -110,7 +109,8 @@ extern "C" int __wrap_glob64(const char * pattern, int flags, int (*errfunc) (co

extern "C" int __poll_chk(struct pollfd *fds, nfds_t nfds, int timeout, size_t fdslen)
{
assert((fdslen / sizeof(*fds)) < nfds);
if(fdslen / sizeof(*fds) < nfds)
__chk_fail();
return poll(fds, nfds, timeout);
}

Expand Down
1 change: 0 additions & 1 deletion src/qt/sendcoinsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,6 @@ void SendCoinsDialog::on_sendButton_clicked()
address.append("</span>");

QString recipientElement;
int nLength = currentTransaction.recipients.length();

if (!rcp.paymentRequest.IsInitialized()) // normal payment
{
Expand Down

0 comments on commit daf5afd

Please sign in to comment.