From bad241ee1a24c85d78d8eebf08053c0d0f3d7110 Mon Sep 17 00:00:00 2001 From: Garrett Smith Date: Tue, 30 Sep 2014 10:14:59 -0500 Subject: [PATCH] Fixed deprecation warnings --- include/emysql.hrl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/emysql.hrl b/include/emysql.hrl index 1320289f..0ccbc706 100644 --- a/include/emysql.hrl +++ b/include/emysql.hrl @@ -34,9 +34,9 @@ port :: number(), database :: string(), encoding :: utf8 | latin1 | {utf8, utf8_unicode_ci} | {utf8, utf8_general_ci}, - available=queue:new() :: queue(), - locked=gb_trees:empty() :: gb_tree(), - waiting=queue:new() :: queue(), + available=queue:new() :: queue:queue(), + locked=gb_trees:empty() :: gb_trees:tree(), + waiting=queue:new() :: queue:queue(), start_cmds=[] :: string(), conn_test_period=0 :: number(), connect_timeout=infinity :: number() | infinity,