mirror of
https://github.com/eclipse/upm.git
synced 2025-03-15 04:57:30 +03:00
ozw: fix up some issues reported by static analysis
Signed-off-by: Jon Trulson <jtrulson@ics.com>
This commit is contained in:
parent
743730550c
commit
e0ef6eea64
@ -576,8 +576,8 @@ namespace upm {
|
||||
|
||||
private:
|
||||
// prevent copying and assignment
|
||||
OZW(OZW const &) {};
|
||||
OZW& operator=(OZW const&) {};
|
||||
OZW(OZW const &) = delete;
|
||||
OZW& operator=(OZW const&) = delete;
|
||||
|
||||
// our class instance
|
||||
static OZW* m_instance;
|
||||
|
@ -24,6 +24,8 @@
|
||||
|
||||
#include <stdint.h>
|
||||
#include <string>
|
||||
#include <cinttypes>
|
||||
|
||||
#include "zwNode.hpp"
|
||||
|
||||
#include "Node.h"
|
||||
@ -185,7 +187,7 @@ void zwNode::dumpNode(bool all)
|
||||
valueUnits.c_str(),
|
||||
perms.c_str());
|
||||
|
||||
fprintf(stderr, "\t\t VID: %016x\n",
|
||||
fprintf(stderr, "\t\t VID: %016" PRIx64 "\n",
|
||||
vid.GetId());
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user