summaryrefslogtreecommitdiff
path: root/cesar/maximus/sci/utest/scimsg/src
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
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')
-rw-r--r--cesar/maximus/sci/utest/scimsg/src/TestClock.cpp2
-rw-r--r--cesar/maximus/sci/utest/scimsg/src/TestEther.cpp2
-rw-r--r--cesar/maximus/sci/utest/scimsg/src/TestFunctionCall.cpp2
-rw-r--r--cesar/maximus/sci/utest/scimsg/src/TestPhy.cpp2
-rw-r--r--cesar/maximus/sci/utest/scimsg/src/TestSystem.cpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/cesar/maximus/sci/utest/scimsg/src/TestClock.cpp b/cesar/maximus/sci/utest/scimsg/src/TestClock.cpp
index 511c1851f2..4c66b63521 100644
--- a/cesar/maximus/sci/utest/scimsg/src/TestClock.cpp
+++ b/cesar/maximus/sci/utest/scimsg/src/TestClock.cpp
@@ -27,7 +27,7 @@ TestClock::setUp ()
{
fake_server = new SciServer (fake_sta_list);
fake_server->register_current_tick_addr (&time_base);
- time_base = 0xDEADBEAF;
+ time_base = 0xDEADBEAFull;
}
void
diff --git a/cesar/maximus/sci/utest/scimsg/src/TestEther.cpp b/cesar/maximus/sci/utest/scimsg/src/TestEther.cpp
index bd676426a7..498e6ee318 100644
--- a/cesar/maximus/sci/utest/scimsg/src/TestEther.cpp
+++ b/cesar/maximus/sci/utest/scimsg/src/TestEther.cpp
@@ -27,7 +27,7 @@ TestEther::setUp ()
{
fake_server = new SciServer (fake_sta_list);
fake_server->register_current_tick_addr (&time_base);
- time_base = 0x1234567809123;
+ time_base = 0x1234567809123ull;
}
void
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
diff --git a/cesar/maximus/sci/utest/scimsg/src/TestPhy.cpp b/cesar/maximus/sci/utest/scimsg/src/TestPhy.cpp
index 0791d5cea4..7acdaf8cf4 100644
--- a/cesar/maximus/sci/utest/scimsg/src/TestPhy.cpp
+++ b/cesar/maximus/sci/utest/scimsg/src/TestPhy.cpp
@@ -27,7 +27,7 @@ TestPhy::setUp ()
{
fake_server = new SciServer (fake_sta_list);
fake_server->register_current_tick_addr (&time_base);
- time_base = 0x1234567809123;
+ time_base = 0x1234567809123ull;
}
void
diff --git a/cesar/maximus/sci/utest/scimsg/src/TestSystem.cpp b/cesar/maximus/sci/utest/scimsg/src/TestSystem.cpp
index cf8b459c52..ab858410bb 100644
--- a/cesar/maximus/sci/utest/scimsg/src/TestSystem.cpp
+++ b/cesar/maximus/sci/utest/scimsg/src/TestSystem.cpp
@@ -27,7 +27,7 @@ TestSystem::setUp ()
{
fake_server = new SciServer (fake_sta_list);
fake_server->register_current_tick_addr (&time_base);
- time_base = 0x1234567809123;
+ time_base = 0x1234567809123ull;
}
void