diff options
author | Juan Quintela <quintela@redhat.com> | 2017-04-20 18:52:18 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2017-06-01 18:49:22 +0200 |
commit | 08a0aee15cba50bd082770b7596e75023163fe87 (patch) | |
tree | 21ee845d9cc0cd14e6731e13ee801c69721acbe0 /migration/socket.c | |
parent | 107da9acb5f2ec99dc5cb70041245a53e16bfcbd (diff) |
migration: Split qemu-file.h
Split the file into public and internal interfaces. I have to rename
the external one because we can't have two include files with the same
name in the same directory. Build system gets confused. The only
exported functions are the ones that handle basic types.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'migration/socket.c')
-rw-r--r-- | migration/socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/socket.c b/migration/socket.c index 53f9d61605..3f8ffc9b04 100644 --- a/migration/socket.c +++ b/migration/socket.c @@ -21,7 +21,7 @@ #include "qapi/error.h" #include "channel.h" #include "migration/migration.h" -#include "migration/qemu-file.h" +#include "qemu-file.h" #include "io/channel-socket.h" #include "trace.h" |