diff options
| author | Amaury Pouly <pamaury@rockbox.org> | 2011-12-15 17:07:22 +0000 |
|---|---|---|
| committer | Amaury Pouly <pamaury@rockbox.org> | 2011-12-15 17:07:22 +0000 |
| commit | 2630ab9fc6bccf8d81752622f5f3dc2525651e39 (patch) | |
| tree | cc4a1f735b0fb8313d38b0073b3384de35f78d65 | |
| parent | 3a6e3c254e5518c110ecaededebc26c5ae431552 (diff) | |
| download | rockbox-2630ab9fc6bccf8d81752622f5f3dc2525651e39.zip rockbox-2630ab9fc6bccf8d81752622f5f3dc2525651e39.tar.gz rockbox-2630ab9fc6bccf8d81752622f5f3dc2525651e39.tar.bz2 rockbox-2630ab9fc6bccf8d81752622f5f3dc2525651e39.tar.xz | |
Fix debug compilation of enc_base.h: define H_TO_BE32 as htobe32
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31271 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/enc_base.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/export/enc_base.h b/firmware/export/enc_base.h index 293ecfc..c2fbe26 100644 --- a/firmware/export/enc_base.h +++ b/firmware/export/enc_base.h @@ -162,6 +162,7 @@ struct encoder_config /* Header at the beginning of every encoder chunk */ #ifdef DEBUG +#define H_TO_BE32 htobe32 #define ENC_CHUNK_MAGIC H_TO_BE32(('P' << 24) | ('T' << 16) | ('Y' << 8) | 'R') #endif struct enc_chunk_hdr |