diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-07-31 12:25:38 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-10 13:05:27 -0500 |
commit | 2e810b366871b1e559e27a0c55e16a328c9f271f (patch) | |
tree | 8fe02fd22086c074edb5c0e2346ece11c115ddc4 /vl.c | |
parent | f31d07d175b25ecca89f5d55dfdf2b55540e5e44 (diff) |
constify drive_get_by_id arg
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Message-Id:
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1835,7 +1835,7 @@ DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit) return NULL; } -DriveInfo *drive_get_by_id(char *id) +DriveInfo *drive_get_by_id(const char *id) { DriveInfo *dinfo; |