Fix build

Don't do two things at once and forget to run ninja before pushing.
This commit is contained in:
Benjamin Otte 2017-10-24 18:26:08 +02:00
parent 8549e62d85
commit 373b407bd2
3 changed files with 3 additions and 3 deletions

View File

@ -286,7 +286,7 @@ translate_notify_type (int detail)
return GDK_NOTIFY_NONLINEAR_VIRTUAL;
default:
g_assert_not_reached ();
return GDK_NOTIFY_UNKONWN;
return GDK_NOTIFY_UNKNOWN;
}
}

View File

@ -1089,7 +1089,7 @@ translate_notify_type (gint detail)
return GDK_NOTIFY_NONLINEAR_VIRTUAL;
default:
g_assert_not_reached ();
return GDK_NOTIFY_UNKONWN;
return GDK_NOTIFY_UNKNOWN;
}
}

View File

@ -501,7 +501,7 @@ translate_subpixel_layout (GdkSubpixelLayout subpixel)
case GDK_SUBPIXEL_LAYOUT_HORIZONTAL_BGR: return "horizontal bgr";
case GDK_SUBPIXEL_LAYOUT_VERTICAL_RGB: return "vertical rgb";
case GDK_SUBPIXEL_LAYOUT_VERTICAL_BGR: return "vertical bgr";
default: g_assert_not_reached (); return "none;
default: g_assert_not_reached (); return "none";
}
}