Skip to content

Commit

Permalink
Merge pull request #838 from mvglasow/github836
Browse files Browse the repository at this point in the history
Fix:graphics/android:Fix crash on startup
  • Loading branch information
mvglasow committed Aug 21, 2019
2 parents 792425f + d36d6d2 commit fade062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion navit/graphics/android/graphics_android.c
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ static struct graphics_methods graphics_methods = {

static void resize_callback(struct graphics_priv *gra, int w, int h) {
dbg(lvl_debug,"w=%d h=%d ok",w,h);
dbg(lvl_debug,"gra=%p, %d callbacks in list", gra, g_list_length(gra->cbl));
dbg(lvl_debug,"gra=%p, gra->cbl=%p", gra, gra->cbl);
callback_list_call_attr_2(gra->cbl, attr_resize, (void *)w, (void *)h);
}

Expand Down

0 comments on commit fade062

Please sign in to comment.