X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstrchrnul.c;h=8d17f15909a8a92f7d3b1c073135bf5cc2fceb1e;hb=4f9d72badae87981d247cd2e34eb9e3e8455d156;hp=db42e28734bb6a444439d6066f13fb5adeaa4eab;hpb=6545de6ca88cf3ef985d38cbb10d022c63b24dbe;p=gnulib.git diff --git a/lib/strchrnul.c b/lib/strchrnul.c index db42e2873..8d17f1590 100644 --- a/lib/strchrnul.c +++ b/lib/strchrnul.c @@ -13,7 +13,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Specification. */ #include "strchrnul.h" @@ -22,7 +22,7 @@ char * strchrnul (const char *s, int c_in) { - unsigned char c = c_in; + char c = c_in; while (*s && (*s != c)) s++;