diff options
author | imarom <imarom@cisco.com> | 2015-09-16 17:12:30 +0300 |
---|---|---|
committer | imarom <imarom@cisco.com> | 2015-09-16 17:12:30 +0300 |
commit | 3b372bbe45931b853f3f906352a0cbdc89952c41 (patch) | |
tree | 994c08f5b916029d7d700e502b0d37e63b3c1397 /src/common | |
parent | dd99c3890d3bb7b4aab833927e85648cd6e86c85 (diff) |
enabled all warnings for the mock RPC server target
Diffstat (limited to 'src/common')
-rwxr-xr-x | src/common/captureFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/captureFile.cpp b/src/common/captureFile.cpp index a4fe78be..00625181 100755 --- a/src/common/captureFile.cpp +++ b/src/common/captureFile.cpp @@ -110,7 +110,7 @@ void CCapPktRaw::CloneShalow(CCapPktRaw *obj){ } void CCapPktRaw::Dump(FILE *fd,int verbose){ - fprintf(fd," =>pkt (%p) %llu , len %d, time [%x:%x] \n",raw,pkt_cnt,pkt_len,time_sec,time_nsec); + fprintf(fd," =>pkt (%p) %llu , len %d, time [%x:%x] \n",raw, (unsigned long long)pkt_cnt,pkt_len,time_sec,time_nsec); if (verbose) { utl_DumpBuffer(fd,raw,pkt_len,0); } |