1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

cleanup: use unsigned type for command

Keep command unsigned (as _IOWR() produces them).
This commit is contained in:
Zdenek Kabelac 2014-07-02 10:27:13 +02:00
parent 57f8b33d5d
commit 52ab15b2d0

View File

@ -74,7 +74,7 @@ struct dm_task {
struct cmd_data { struct cmd_data {
const char *name; const char *name;
const int cmd; const unsigned cmd;
const int version[3]; const int version[3];
}; };