From 04549fd7a56d0111871e4358ebf17ff4e26ab934 Mon Sep 17 00:00:00 2001 From: Joe Ardent Date: Sat, 1 Jul 2023 16:20:48 -0700 Subject: [PATCH] change showkind repr to i8 --- src/watches/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/watches/mod.rs b/src/watches/mod.rs index abdb92b..e170da3 100644 --- a/src/watches/mod.rs +++ b/src/watches/mod.rs @@ -8,7 +8,7 @@ pub mod templates; #[derive( Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize, sqlx::Type, )] -#[repr(i32)] +#[repr(i8)] pub enum ShowKind { Movie = 0, Series = 1,