Skip to content

Commit 70f84f0

Browse files
authored
Still fixing SONAR issues (#15)
1 parent 57d83e7 commit 70f84f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scenes/scene_director.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ void totp_scene_director_render(Canvas* const canvas, PluginState* const plugin_
8888
}
8989
}
9090

91-
void totp_scene_director_dispose(PluginState* const plugin_state) {
91+
void totp_scene_director_dispose(const PluginState* const plugin_state) {
9292
totp_scene_generate_token_free(plugin_state);
9393
totp_scene_authenticate_free(plugin_state);
9494
totp_scene_add_new_token_free(plugin_state);

scenes/scene_director.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ void totp_scene_director_activate_scene(
1212
void totp_scene_director_deactivate_active_scene(PluginState* const plugin_state);
1313
void totp_scene_director_init_scenes(PluginState* const plugin_state);
1414
void totp_scene_director_render(Canvas* const canvas, PluginState* const plugin_state);
15-
void totp_scene_director_dispose(PluginState* const plugin_state);
15+
void totp_scene_director_dispose(const PluginState* const plugin_state);
1616
bool totp_scene_director_handle_event(PluginEvent* const event, PluginState* const plugin_state);

0 commit comments

Comments
 (0)