diff options
author | Mathias Krause <minipli@googlemail.com> | 2015-06-17 15:39:35 +0200 |
---|---|---|
committer | Paul Moore <pmoore@redhat.com> | 2015-07-06 10:21:18 -0400 |
commit | 630c51b50ebb2bbc0cafadbda7c8f845acfcd6bd (patch) | |
tree | 8d7b05613cf3dc993e107405cddbdf185be7ec34 /src/db.h | |
parent | d7ccfb511b17e0e04ba98623946b1f09f1fc31ed (diff) | |
download | libseccomp-630c51b50ebb2bbc0cafadbda7c8f845acfcd6bd.tar.gz |
db: fix type of op in struct db_api_arg
No need to use unsigned int here, use the enum instead.
Signed-off-by: Mathias Krause <minipli@googlemail.com>
Signed-off-by: Paul Moore <pmoore@redhat.com>
Diffstat (limited to 'src/db.h')
-rw-r--r-- | src/db.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ struct db_api_arg { unsigned int arg; - unsigned int op; + enum scmp_compare op; scmp_datum_t mask; scmp_datum_t datum; |