summaryrefslogtreecommitdiff
path: root/tools/omf/omftool.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-10-04 14:51:05 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-10-04 14:51:05 -0400
commit4dc63966f0872efe768dad61eb9b8785d06b92d1 (patch)
treee54104d57d6c2da7840979181368151fd0819c96 /tools/omf/omftool.h
parent297e80e020da94a56984b20782584bb1dd96ea34 (diff)
globally remove all trailing whitespace from ardour code base.
Paul Davis was responsible for introducing almost all of this.
Diffstat (limited to 'tools/omf/omftool.h')
-rw-r--r--tools/omf/omftool.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/omf/omftool.h b/tools/omf/omftool.h
index b6e291ca58..4b794d94b4 100644
--- a/tools/omf/omftool.h
+++ b/tools/omf/omftool.h
@@ -84,7 +84,7 @@ private:
uint32_t e32(uint32_t x)
{
if (bigEndian)
- return (x>>24) |
+ return (x>>24) |
((x<<8) & 0x00FF0000) |
((x>>8) & 0x0000FF00) |
(x<<24);
@@ -95,7 +95,7 @@ private:
uint64_t e64(uint64_t x)
{
if (bigEndian)
- return (x>>56) |
+ return (x>>56) |
((x<<40) & 0x00FF000000000000) |
((x<<24) & 0x0000FF0000000000) |
((x<<8) & 0x000000FF00000000) |