fixed error in struct declaration

* app/gimplutP.h: fixed error in struct declaration
This commit is contained in:
jaycox 1999-02-17 04:59:42 +00:00
parent 74eb7b9d1e
commit 6e7fddf69d
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
1999-02-16 Jay Cox <jaycox@earthlink.net>
* app/gimplutP.h: fixed error in struct declaration
1999-02-16 Jay Cox <jaycox@earthlink.net>
* app/gimplut[FP].h: oops, these should have been added with the

View File

@ -21,10 +21,10 @@
#ifndef __GIMPLUT_P_H__
#define __GIMPLUT_P_H__
typedef struct _GimpLut
struct _GimpLut
{
unsigned char **luts;
int nchannels;
} GimpLut;
};
#endif /* __GIMPLUT_P_H__ */