* disk/usbms.c (grub_usbms_transfer): Fix double semicolon.
* fs/xfs.c (grub_xfs_dir): Likewise.
* fs/afs.c (grub_afs_dir): Likewise.
* fs/iso9660.c (grub_iso9660_iterate_dir): Likewise.
(grub_iso9660_open): Likewise.
* fs/jfs.c (grub_jfs_open): Likewise.
* fs/ext2.c (grub_ext2_dir): Likewise.
* include/grub/macho.h (grub_macho_fat_arch): Likewise.
* script/sh/lexer.c (grub_script_yylex): Likewise.
+2009-07-19 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * disk/usbms.c (grub_usbms_transfer): Fix double semicolon.
+ * fs/xfs.c (grub_xfs_dir): Likewise.
+ * fs/afs.c (grub_afs_dir): Likewise.
+ * fs/iso9660.c (grub_iso9660_iterate_dir): Likewise.
+ (grub_iso9660_open): Likewise.
+ * fs/jfs.c (grub_jfs_open): Likewise.
+ * fs/ext2.c (grub_ext2_dir): Likewise.
+ * include/grub/macho.h (grub_macho_fat_arch): Likewise.
+ * script/sh/lexer.c (grub_script_yylex): Likewise.
+
2009-07-16 Pavel Roskin <proski@gnu.org>
* configure.ac: Never add "-c" to CFLAGS.
grub_usb_clear_halt (dev->dev, dev->out->endp_addr);
goto retry;
}
- return grub_error (GRUB_ERR_IO, "USB Mass Storage request failed");;
+ return grub_error (GRUB_ERR_IO, "USB Mass Storage request failed");
}
/* Read/write the data. */
int (*hook) (const char *filename,
const struct grub_dirhook_info *info))
{
- struct grub_afs_data *data = 0;;
+ struct grub_afs_data *data = 0;
struct grub_fshelp_node *fdiro = 0;
auto int NESTED_FUNC_ATTR iterate (const char *filename,
int (*hook) (const char *filename,
const struct grub_dirhook_info *info))
{
- struct grub_ext2_data *data = 0;;
+ struct grub_ext2_data *data = 0;
struct grub_fshelp_node *fdiro = 0;
auto int NESTED_FUNC_ATTR iterate (const char *filename,
int nameoffset = offset + sizeof (dirent);
struct grub_fshelp_node *node;
int sua_off = (sizeof (dirent) + dirent.namelen + 1
- - (dirent.namelen % 2));;
+ - (dirent.namelen % 2));
int sua_size = dirent.len - sua_off;
sua_off += offset + dir->data->susp_skip;
grub_free (data);
- return grub_errno;;
+ return grub_errno;
}
grub_free (data);
- return grub_errno;;
+ return grub_errno;
}
int (*hook) (const char *filename,
const struct grub_dirhook_info *info))
{
- struct grub_xfs_data *data = 0;;
+ struct grub_xfs_data *data = 0;
struct grub_fshelp_node *fdiro = 0;
auto int NESTED_FUNC_ATTR iterate (const char *filename,
grub_uint32_t offset;
grub_uint32_t size;
grub_uint32_t align;
-} __attribute__ ((packed));;
+} __attribute__ ((packed));
/* File header for 32-bit. Always in native-endian. */
struct grub_macho_header32
{
char c;
grub_dprintf ("scripting", "token=`%c'\n", *state->script);
- c = *state->script;;
+ c = *state->script;
nextchar (state);
state->tokenonhold = c;
doexit = 1;