summaryrefslogtreecommitdiff
path: root/cesar/maximus/sci/utest/scimsg/src/TestFunctionCall.cpp
diff options
context:
space:
mode:
authorThierry Carré2013-02-14 11:12:56 +0100
committerThierry Carré2013-02-21 11:36:13 +0100
commit929650843eda34039df4ffaa824ba5490fb236f5 (patch)
treecc108d23783d8a81f36c2807a89abe6cfc322ea7 /cesar/maximus/sci/utest/scimsg/src/TestFunctionCall.cpp
parent911fc618da154e841be7136fa01fb817cab84e74 (diff)
cesar/maximus/sci/utest: warning fix about the initialization of time_base
Network_Clock_Tick is an unsigned long long. Warnings are visible on 32 bits OS.
Diffstat (limited to 'cesar/maximus/sci/utest/scimsg/src/TestFunctionCall.cpp')
-rw-r--r--cesar/maximus/sci/utest/scimsg/src/TestFunctionCall.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cesar/maximus/sci/utest/scimsg/src/TestFunctionCall.cpp b/cesar/maximus/sci/utest/scimsg/src/TestFunctionCall.cpp
index a5ede75be9..b5fd876b13 100644
--- a/cesar/maximus/sci/utest/scimsg/src/TestFunctionCall.cpp
+++ b/cesar/maximus/sci/utest/scimsg/src/TestFunctionCall.cpp
@@ -27,7 +27,7 @@ TestFunctionCall::setUp ()
{
fake_server = new SciServer (fake_sta_list);
fake_server->register_current_tick_addr (&time_base);
- time_base = 0xBEEFBEEFBEEFBEEFll;
+ time_base = 0xBEEFBEEFBEEFBEEFull;
}
void