diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2017-02-18 18:16:37 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2017-02-18 18:17:03 -0800 |
commit | b2a83eed23d540b4b0ab9e0bf5605821011bfd7d (patch) | |
tree | 20545c597c19d213252bcdba7076a807ec633867 /src/emacsgtkfixed.c | |
parent | 7f89c208bf4bb256c67cc59351f4171c7a6b63aa (diff) | |
download | emacs-b2a83eed23d540b4b0ab9e0bf5605821011bfd7d.tar.gz emacs-b2a83eed23d540b4b0ab9e0bf5605821011bfd7d.tar.bz2 emacs-b2a83eed23d540b4b0ab9e0bf5605821011bfd7d.zip |
Use 'char *FOO' instead of 'char* FOO'
Diffstat (limited to 'src/emacsgtkfixed.c')
-rw-r--r-- | src/emacsgtkfixed.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emacsgtkfixed.c b/src/emacsgtkfixed.c index 64b74ea24ce..75cb3c1c727 100644 --- a/src/emacsgtkfixed.c +++ b/src/emacsgtkfixed.c @@ -148,7 +148,7 @@ emacs_fixed_class_init (EmacsFixedClass *klass) { GtkWidgetClass *widget_class; - widget_class = (GtkWidgetClass*) klass; + widget_class = (GtkWidgetClass *) klass; widget_class->get_preferred_width = emacs_fixed_get_preferred_width; widget_class->get_preferred_height = emacs_fixed_get_preferred_height; @@ -205,9 +205,9 @@ emacs_fixed_get_preferred_height (GtkWidget *widget, (Bug#8919), and so users can resize our frames as they wish. */ void -XSetWMSizeHints (Display* d, +XSetWMSizeHints (Display *d, Window w, - XSizeHints* hints, + XSizeHints *hints, Atom prop) { struct x_display_info *dpyinfo = x_display_info_for_display (d); |