Skip to content

Commit ebb0a3a

Browse files
authored
* Updated firmware submodules (#72) (#73)
* Cosmetic improvements
1 parent f7e7550 commit ebb0a3a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cli/commands/move/move.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ void totp_cli_command_move_docopt_usage() {
3434
void totp_cli_command_move_docopt_options() {
3535
TOTP_CLI_PRINTF(" " DOCOPT_OPTION(
3636
TOTP_CLI_COMMAND_MOVE_ARG_NEW_NAME_PREFIX,
37-
DOCOPT_ARGUMENT(TOTP_CLI_COMMAND_MOVE_ARG_NEW_NAME)) " New token name.\r\n");
37+
DOCOPT_ARGUMENT(TOTP_CLI_COMMAND_MOVE_ARG_NEW_NAME)) " New token name\r\n");
3838
TOTP_CLI_PRINTF(" " DOCOPT_OPTION(
3939
TOTP_CLI_COMMAND_MOVE_ARG_NEW_INDEX_PREFIX,
40-
DOCOPT_ARGUMENT(TOTP_CLI_COMMAND_MOVE_ARG_NEW_INDEX)) " New token index.\r\n");
40+
DOCOPT_ARGUMENT(TOTP_CLI_COMMAND_MOVE_ARG_NEW_INDEX)) " New token index\r\n");
4141
}
4242

4343
void totp_cli_command_move_handle(PluginState* plugin_state, FuriString* args, Cli* cli) {

cli/commands/timezone/timezone.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ void totp_cli_command_timezone_docopt_usage() {
2020

2121
void totp_cli_command_timezone_docopt_arguments() {
2222
TOTP_CLI_PRINTF(" " TOTP_CLI_COMMAND_TIMEZONE_ARG_TIMEZONE
23-
" Timezone offset in hours to be set.\r\n");
23+
" Timezone offset in hours to be set\r\n");
2424
}
2525

2626
void totp_cli_command_timezone_handle(PluginState* plugin_state, FuriString* args, Cli* cli) {

services/config/config.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ static TotpConfigFileOpenResult totp_open_config_file(Storage* storage, FlipperF
196196
return TotpConfigFileOpenSuccess;
197197
}
198198

199-
TotpConfigFileUpdateResult
199+
static TotpConfigFileUpdateResult
200200
totp_config_file_save_new_token_i(FlipperFormat* file, const TokenInfo* token_info) {
201201
TotpConfigFileUpdateResult update_result;
202202
do {

0 commit comments

Comments
 (0)