diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.SQL.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.SQL.cs index ac03a3c9d4..00bcfb92c1 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.SQL.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.SQL.cs @@ -81,14 +81,14 @@ namespace BizHawk.Client.Common return "Command ran successfully"; } - catch (NullReferenceException nullEX) + catch (NullReferenceException) { return "Database not open."; } - catch (SQLiteException sqlEX) + catch (SQLiteException sqlEx) { m_dbConnection.Close(); - return sqlEX.Message; + return sqlEx.Message; } }