summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-01-29 16:13:45 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-01-29 16:13:45 +0000
commitff90a778b865a69b1e856224d127a365e2d1bd18 (patch)
tree4dfe4e8640172acf0f8802fe7dc197d9ec29c7b2
parent2cb500e5f7c9567b78ec9fff8f5304d81d146c18 (diff)
2009-01-29 Gene Smith <gene.smith@siemens.com>
PR 1363/filesystem * libfs/src/dosfs/fat.h: Fix issue where 32 bit values are not written correctly in FAT f/s data.
-rw-r--r--cpukit/ChangeLog6
-rw-r--r--cpukit/libfs/src/dosfs/fat.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 4982ad3f26..a7f96c50b0 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,9 @@
+2009-01-29 Gene Smith <gene.smith@siemens.com>
+
+ PR 1363/filesystem
+ * libfs/src/dosfs/fat.h: Fix issue where 32 bit values are not written
+ correctly in FAT f/s data.
+
2009-01-29 Eric Norum <norume@aps.anl.gov>
PR 1364/cpukit
diff --git a/cpukit/libfs/src/dosfs/fat.h b/cpukit/libfs/src/dosfs/fat.h
index 3a951b114e..bb7618327f 100644
--- a/cpukit/libfs/src/dosfs/fat.h
+++ b/cpukit/libfs/src/dosfs/fat.h
@@ -130,7 +130,7 @@ extern "C" {
#define FAT_SET_VAL32(x, ofs,val) do { \
uint32_t val1 = val; \
- FAT_SET_VAL16((x),(ofs),(val1)&&0xffff);\
+ FAT_SET_VAL16((x),(ofs),(val1)&0xffff);\
FAT_SET_VAL16((x),(ofs)+2,(val1)>>16);\
} while (0)