aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-08-31 01:11:12 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-09-09 12:36:04 +0200
commitd78900cc1bb188a29dfb23b1f41b00f35ceb69f7 (patch)
tree4d17c023e872e61a6011ab5fd9b92a682dd3f716 /src/util.h
parent4c723841e25650f045ed55b1e6a619d6d43398d5 (diff)
downloadbitcoin-d78900cc1bb188a29dfb23b1f41b00f35ceb69f7.tar.xz
fix some cosmetic glitches in the codebase
- rename URL into URI in paymentserver where correct - add some missing Qt-coding-stuff in paymentserver - change QSpinBox to QLineEdit as base for BitcoinAmountField in .ui files (as this is the result when converting the BAF back into base) - remove some c_str() and replace with QString::fromStdString() - remove several new-lines - remove unneeded spaces - indentation fixes
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h
index 62eb7fad9e..d0bd16c1c9 100644
--- a/src/util.h
+++ b/src/util.h
@@ -522,7 +522,7 @@ inline void SetThreadPriority(int nPriority)
// PRIO_MAX is not defined on Solaris
#ifndef PRIO_MAX
- #define PRIO_MAX 20
+#define PRIO_MAX 20
#endif
#define THREAD_PRIORITY_LOWEST PRIO_MAX
#define THREAD_PRIORITY_BELOW_NORMAL 2