summaryrefslogtreecommitdiff
path: root/encode_test.c
diff options
context:
space:
mode:
authorGraham Miller <graham.miller@gmail.com>2011-02-09 18:49:53 -0500
committerGraham Miller <graham.miller@gmail.com>2011-02-09 18:49:53 -0500
commit4e228b5d61e25823b573457b170ad012c86a0a71 (patch)
tree2c5a9da5750b6db4e8dc6dec5c671c8982882482 /encode_test.c
parentab75d98b84db3583ed51042dcf470d4e1b05d413 (diff)
downloadlibgob-4e228b5d61e25823b573457b170ad012c86a0a71.tar.gz
libgob-4e228b5d61e25823b573457b170ad012c86a0a71.tar.bz2
changed encode_double to use memecpy0.3
Diffstat (limited to 'encode_test.c')
-rw-r--r--encode_test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/encode_test.c b/encode_test.c
index 6b70a81..dea53d7 100644
--- a/encode_test.c
+++ b/encode_test.c
@@ -74,7 +74,8 @@ void test_flip_unsigned_long_long(){
void test_gob_encode_double() {
char buf[1024];
- int num_bytes = gob_encode_double(buf, 1024, 17.0);
+ double doubleval = 17;
+ int num_bytes = gob_encode_double(buf, 1024, doubleval);
CU_ASSERT_EQUAL(3, num_bytes);
CU_ASSERT_EQUAL((char)0xFE, buf[0]);
CU_ASSERT_EQUAL((char)0x31, buf[1]);