diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2013-06-03 08:57:49 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-06-03 08:57:49 -0400 |
commit | 09376a932b2af4c66dbf3230a8e5d604701d781b (patch) | |
tree | 7d24159dbada82232919a507aac7c1f8d49c989e /src/udev/udev-builtin-usb_id.c | |
parent | 2e16351ec5b23e4ca1c03106ef2152d80aca7f20 (diff) |
Move remaining _cleanup_free_ in front of type
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/udev/udev-builtin-usb_id.c')
-rw-r--r-- | src/udev/udev-builtin-usb_id.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udev-builtin-usb_id.c b/src/udev/udev-builtin-usb_id.c index 94e3f37a17..b021d03a65 100644 --- a/src/udev/udev-builtin-usb_id.c +++ b/src/udev/udev-builtin-usb_id.c @@ -151,7 +151,7 @@ static void set_scsi_type(char *to, const char *from, size_t len) static int dev_if_packed_info(struct udev_device *dev, char *ifs_str, size_t len) { - char _cleanup_free_ *filename = NULL; + _cleanup_free_ char *filename = NULL; int _cleanup_close_ fd = -1; ssize_t size; unsigned char buf[18 + 65535]; |