Revert "Get rid of _t suffix"

In the very least, a change like this requires discussion on the list.

The naming convention is goofy and it causes a massive merge problem.  Something
like this _must_ be presented on the list first so people can provide input
and cope with it.

This reverts commit 99a0949b72.

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Anthony Liguori 2009-10-01 16:12:16 -05:00
parent 99a0949b72
commit c227f0995e
316 changed files with 3332 additions and 3325 deletions

View file

@ -31,10 +31,10 @@
#include <windows.h>
#endif
typedef struct img_cmd {
typedef struct img_cmd_t {
const char *name;
int (*handler)(int argc, char **argv);
} a_img_cmd;
} img_cmd_t;
/* Default to cache=writeback as data integrity is not important for qemu-tcg. */
#define BRDV_O_FLAGS BDRV_O_CACHE_WB
@ -1035,7 +1035,7 @@ static int img_snapshot(int argc, char **argv)
return 0;
}
static const a_img_cmd img_cmds[] = {
static const img_cmd_t img_cmds[] = {
#define DEF(option, callback, arg_string) \
{ option, callback },
#include "qemu-img-cmds.h"
@ -1046,7 +1046,7 @@ static const a_img_cmd img_cmds[] = {
int main(int argc, char **argv)
{
const a_img_cmd *cmd;
const img_cmd_t *cmd;
const char *cmdname;
bdrv_init();