Skip to content

Commit

Permalink
Add static to image_type struct in image.c
Browse files Browse the repository at this point in the history
  • Loading branch information
benreyn committed Jan 22, 2020
1 parent a1c7a2a commit 5e5270c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/image.c
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ static struct image_type *image_types;

/* Forward function prototypes. */

struct image_type *lookup_image_type (Lisp_Object);
static struct image_type *lookup_image_type (Lisp_Object);
static void x_laplace (struct frame *, struct image *);
static void x_emboss (struct frame *, struct image *);
static void x_build_heuristic_mask (struct frame *, struct image *,
Expand Down Expand Up @@ -9690,7 +9690,7 @@ DEFUN ("lookup-image", Flookup_image, Slookup_image, 1, 1, 0,
/* Look up image type TYPE, and return a pointer to its image_type
structure. Return 0 if TYPE is not a known image type. */

struct image_type *
static struct image_type *
lookup_image_type (Lisp_Object type)
{
/* Types pbm and xbm are built-in and always available. */
Expand Down

0 comments on commit 5e5270c

Please sign in to comment.