mirror of https://github.com/thesofproject/sof.git
rimage: fix build error
Recent changes introduce build error, fix the build error. Signed-off-by: Chao Song <chao.song@linux.intel.com>
This commit is contained in:
parent
35bc64467a
commit
5bc201039d
|
@ -7,6 +7,7 @@
|
|||
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
#include <time.h>
|
||||
#include <sys/time.h>
|
||||
#include <rimage/rimage.h>
|
||||
#include <rimage/css.h>
|
||||
|
|
|
@ -312,7 +312,7 @@ static int rimage_verify(EVP_PKEY *privkey, enum manver ver,struct hash_context
|
|||
}
|
||||
|
||||
switch (ver) {
|
||||
case V15 /* fallthrough */
|
||||
case V15: /* fallthrough */
|
||||
case V18:
|
||||
break;
|
||||
|
||||
|
@ -338,8 +338,6 @@ static int rimage_verify(EVP_PKEY *privkey, enum manver ver,struct hash_context
|
|||
fprintf(stderr, "error: verify %s\n", err_buf);
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
out:
|
||||
EVP_PKEY_CTX_free(ctx);
|
||||
|
||||
|
|
Loading…
Reference in New Issue