diff options
| author | Czarek Nakamoto <cyjan@mrcyjanek.net> | 2023-12-30 13:50:07 +0100 |
|---|---|---|
| committer | Czarek Nakamoto <cyjan@mrcyjanek.net> | 2023-12-30 13:50:07 +0100 |
| commit | 3310b738de6c2e76f024cad96cf09e93974ebfcc (patch) | |
| tree | 2b6843ec96ee583aa55cd3b2dd5e320006dac3eb | |
| parent | 48e6f061420a9da04ed658e35d1ad8768791147f (diff) | |
fix ffigen
[SEVERE] : Header ./wallet2_api_c.h: Total errors/warnings: 2.
[SEVERE] : ./wallet2_api_c.h:708:20: error: initializer element is not a compile-time constant [Semantic Issue]
[SEVERE] : ./wallet2_api_c.h:709:20: error: initializer element is not a compile-time constant [Semantic Issue]
| -rw-r--r-- | libbridge/src/main/cpp/wallet2_api_c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbridge/src/main/cpp/wallet2_api_c.h b/libbridge/src/main/cpp/wallet2_api_c.h index 1fccf6c..e2c23bb 100644 --- a/libbridge/src/main/cpp/wallet2_api_c.h +++ b/libbridge/src/main/cpp/wallet2_api_c.h @@ -705,8 +705,8 @@ int LogLevel_1 = 1; int LogLevel_2 = 2; int LogLevel_3 = 3; int LogLevel_4 = 4; -int LogLevel_Min = LogLevel_Silent; -int LogLevel_Max = LogLevel_4; +int LogLevel_Min = -1; +int LogLevel_Max = 4; // struct WalletManagerFactory // { |
