chiark / gitweb /
[PATCH] volume_id: version 41
[elogind.git] / klibc / klibc / strncat.c
index 4d8458d5ec88e44b1d83804251479f76724e6512..78223152c4f98d53445f28633f431026e4726dfb 100644 (file)
@@ -10,7 +10,6 @@ char *strncat(char *dst, const char *src, size_t n)
   char *q = strchr(dst, '\0');
   const char *p = src;
   char ch;
-  size_t nn = q-dst;
 
   while (n--) {
     *q++ = ch = *p++;