diff options
author | David Teirney <david@teirney.net> | 2012-06-12 22:35:54 +1200 |
---|---|---|
committer | David Teirney <david@teirney.net> | 2012-06-19 20:55:18 +1200 |
commit | 44c4e5920e794074e91f76e86ae158539c606f9f (patch) | |
tree | b6a422afead45bbe071b9014f3a4bf5c4d8c2d47 /lib/cmyth | |
parent | 4bd16ac338194a145cee1b0e24e952dda261a6bd (diff) |
Remove printf statements from mythtv_mysql.c
Diffstat (limited to 'lib/cmyth')
-rw-r--r-- | lib/cmyth/libcmyth/mythtv_mysql.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/cmyth/libcmyth/mythtv_mysql.c b/lib/cmyth/libcmyth/mythtv_mysql.c index 3ff23fa6fc..3b9e04d8ff 100644 --- a/lib/cmyth/libcmyth/mythtv_mysql.c +++ b/lib/cmyth/libcmyth/mythtv_mysql.c @@ -76,7 +76,6 @@ cmyth_database_init(char *host, char *db_name, char *user, char *pass) int cmyth_database_set_host(cmyth_database_t db, char *host) { - PRINTF("** SSDEBUG: setting the db host to %s\n", host); cmyth_database_close(db); ref_release(db->db_host); db->db_host = ref_strdup(host); @@ -89,7 +88,6 @@ cmyth_database_set_host(cmyth_database_t db, char *host) int cmyth_database_set_user(cmyth_database_t db, char *user) { - PRINTF("** SSDEBUG: setting the db user to %s\n", user); cmyth_database_close(db); ref_release(db->db_user); db->db_user = ref_strdup(user); @@ -102,7 +100,6 @@ cmyth_database_set_user(cmyth_database_t db, char *user) int cmyth_database_set_pass(cmyth_database_t db, char *pass) { - PRINTF("** SSDEBUG: setting the db pass to %s\n", pass); cmyth_database_close(db); ref_release(db->db_user); db->db_pass = ref_strdup(pass); @@ -115,7 +112,6 @@ cmyth_database_set_pass(cmyth_database_t db, char *pass) int cmyth_database_set_name(cmyth_database_t db, char *name) { - PRINTF("** SSDEBUG: setting the db name to %s\n", name); cmyth_database_close(db); ref_release(db->db_name); db->db_name = ref_strdup(name); |