diff options
author | RALOVICH, Kristof <tade60@freemail.hu> | 2014-04-08 14:47:52 +0200 |
---|---|---|
committer | RALOVICH, Kristof <tade60@freemail.hu> | 2014-04-08 14:47:52 +0200 |
commit | 3c579c0b45d3a53b52d24b4a8646ac4137e4eee6 (patch) | |
tree | cafc4d37d981b889cc8dffdff8a0ce0bd604787c | |
parent | 743df8a9891c16ced815db7a08c75bd387299133 (diff) |
don't use NULL
-rw-r--r-- | src/Serial.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Serial.hpp b/src/Serial.hpp index 452b52f..0871436 100644 --- a/src/Serial.hpp +++ b/src/Serial.hpp @@ -38,7 +38,7 @@ public: virtual const char* getImplName() = 0; virtual bool isOpen() const = 0; virtual bool setWriteDelay(const size_t ms) = 0; - static Serial* instantiate(void* p = NULL); + static Serial* instantiate(void* p = 0); }; } |