Skip to content

Commit

Permalink
Fix formatting for GError
Browse files Browse the repository at this point in the history
  • Loading branch information
apmasell committed Sep 9, 2014
1 parent 45292c6 commit 2cf21e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .indent.pro
Expand Up @@ -4,6 +4,7 @@
-T GAsyncResult
-T gboolean
-T gchar
-T GError
-T gint
-T gpointer
-T GSimpleAsyncResult
Expand Down
3 changes: 2 additions & 1 deletion misc.c
Expand Up @@ -13,7 +13,8 @@ gchar *tabbed_mux_strip(

void tabbed_mux_throw_errno(
gint err_number,
GError ** error) {
GError **error) {

g_set_error_literal(error, G_IO_ERROR, g_io_error_from_errno(err_number), g_strerror(err_number));
}

Expand Down

0 comments on commit 2cf21e1

Please sign in to comment.