[bwm-tools-devel] COMMIT - r47 - trunk/bwm_firewall
Brought to you by:
nkukard
From: SVN C. <sv...@li...> - 2005-01-19 14:04:57
|
Author: nkukard Date: 2005-01-19 16:04:42 +0200 (Wed, 19 Jan 2005) New Revision: 47 Modified: trunk/bwm_firewall/bwm_firewall.c Log: * Small code cleanup to fix warning on compile Modified: trunk/bwm_firewall/bwm_firewall.c =================================================================== --- trunk/bwm_firewall/bwm_firewall.c 2005-01-19 13:55:19 UTC (rev 46) +++ trunk/bwm_firewall/bwm_firewall.c 2005-01-19 14:04:42 UTC (rev 47) @@ -237,7 +237,7 @@ // Check if we piping to iptables aswell if (piptables_restore) { - fprintf(piptables_restore, "%s", data); + fprintf(piptables_restore, "%s", (char *) data); // Check for IO error if (ferror(piptables_restore)) { |