Bug fixed (sec6).

This commit is contained in:
Toshio Sekiya 2022-04-13 20:40:24 +09:00
parent ee6a19fe3a
commit a8ff343e8a
2 changed files with 2 additions and 2 deletions

View file

@ -159,7 +159,7 @@ char *s;
s = g_new (char, 10);
/* s points an array of char. The size of the array is 10. */
struct tuple (int x, int y) *t;
struct tuple {int x, y;} *t;
t = g_new (struct tuple, 5);
/* t points an array of struct tuple. */
/* The size of the array is 5. */

View file

@ -157,7 +157,7 @@ char *s;
s = g_new (char, 10);
/* s points an array of char. The size of the array is 10. */
struct tuple (int x, int y) *t;
struct tuple {int x, y;} *t;
t = g_new (struct tuple, 5);
/* t points an array of struct tuple. */
/* The size of the array is 5. */