diff options
| author | Nikola Pajkovsky <npajkovs@redhat.com> | 2009-11-03 12:23:13 +0100 |
|---|---|---|
| committer | Nikola Pajkovsky <npajkovs@redhat.com> | 2009-11-03 12:23:13 +0100 |
| commit | 12156c5e95c8bdff6dbc422180ac24e7f259c0a2 (patch) | |
| tree | 2df965f5c6d31c49726a1239f7f3d43986e7d444 | |
| parent | e8eefb19c47a7f4e7481d1f6460f8632e09bd76e (diff) | |
| download | abrt-12156c5e95c8bdff6dbc422180ac24e7f259c0a2.tar.gz abrt-12156c5e95c8bdff6dbc422180ac24e7f259c0a2.tar.xz abrt-12156c5e95c8bdff6dbc422180ac24e7f259c0a2.zip | |
uint64_t changed to int64_t
| -rw-r--r-- | lib/Utils/DebugDump.cpp | 2 | ||||
| -rw-r--r-- | lib/Utils/DebugDump.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Utils/DebugDump.cpp b/lib/Utils/DebugDump.cpp index d5eeb77..ec9e470 100644 --- a/lib/Utils/DebugDump.cpp +++ b/lib/Utils/DebugDump.cpp @@ -208,7 +208,7 @@ void CDebugDump::UnLock() } } -void CDebugDump::Create(const std::string& pDir, uint64_t uid) +void CDebugDump::Create(const std::string& pDir, int64_t uid) { if (m_bOpened) { diff --git a/lib/Utils/DebugDump.h b/lib/Utils/DebugDump.h index fae6420..189b42d 100644 --- a/lib/Utils/DebugDump.h +++ b/lib/Utils/DebugDump.h @@ -61,7 +61,7 @@ class CDebugDump ~CDebugDump() { Close(); } void Open(const std::string& pDir); - void Create(const std::string& pDir, uint64_t uid); + void Create(const std::string& pDir, int64_t uid); void Delete(); void Close(); |
