Skip to content

Commit

Permalink
Still fixing SONAR issues (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
akopachov committed Oct 28, 2022
1 parent 57d83e7 commit 70f84f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scenes/scene_director.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ void totp_scene_director_render(Canvas* const canvas, PluginState* const plugin_
}
}

void totp_scene_director_dispose(PluginState* const plugin_state) {
void totp_scene_director_dispose(const PluginState* const plugin_state) {
totp_scene_generate_token_free(plugin_state);
totp_scene_authenticate_free(plugin_state);
totp_scene_add_new_token_free(plugin_state);
Expand Down
2 changes: 1 addition & 1 deletion scenes/scene_director.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ void totp_scene_director_activate_scene(
void totp_scene_director_deactivate_active_scene(PluginState* const plugin_state);
void totp_scene_director_init_scenes(PluginState* const plugin_state);
void totp_scene_director_render(Canvas* const canvas, PluginState* const plugin_state);
void totp_scene_director_dispose(PluginState* const plugin_state);
void totp_scene_director_dispose(const PluginState* const plugin_state);
bool totp_scene_director_handle_event(PluginEvent* const event, PluginState* const plugin_state);

0 comments on commit 70f84f0

Please sign in to comment.