From da72e46a1586fcc54a13fbb13d1f7952b60c8753 Mon Sep 17 00:00:00 2001 From: Dario Date: Wed, 15 Jul 2020 14:28:17 +0200 Subject: [PATCH] fix syntax error --- src/cpp/controller/User.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/controller/User.cpp b/src/cpp/controller/User.cpp index 389642f71..bd083ca36 100644 --- a/src/cpp/controller/User.cpp +++ b/src/cpp/controller/User.cpp @@ -295,7 +295,7 @@ namespace controller { //! \return -1 no matching entry found //! \return -2 if user id is not set or invalid //! \return 0 matching entry found - int User::tryLoadPassphraseUserBackup(KeyPairEd25519** createdKeyPair = nullptr) + int User::tryLoadPassphraseUserBackup(KeyPairEd25519** createdKeyPair/* = nullptr*/) { auto user_model = getModel(); if (user_model->getID() <= 0) return -2;