diff options
| author | Philipp Sehmisch <mana@crushnet.org> | 2010-12-17 16:41:23 +0100 |
|---|---|---|
| committer | Philipp Sehmisch <mana@crushnet.org> | 2010-12-17 17:24:21 +0100 |
| commit | 7e6e1012ebbf96f8e0ca149304ef970b4a55e2dd (patch) | |
| tree | 127d52a8ea2b292285348021f3afd8d1ea5a7487 /src | |
| parent | 3179f43056146376e254f0e6cc282f0a812173bc (diff) | |
Fixed a compiler warning.
Diffstat (limited to 'src')
| -rw-r--r-- | src/account-server/storage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/account-server/storage.cpp b/src/account-server/storage.cpp index dc46329..43b32ee 100644 --- a/src/account-server/storage.cpp +++ b/src/account-server/storage.cpp @@ -251,7 +251,7 @@ Account *Storage::getAccount(int accountID) Character *Storage::getCharacterBySQL(Account *owner) { - Character *character; + Character *character = 0; // Specialize the string_to functor to convert // a string to an unsigned int. |
