]> Dogcows Code - chaz/tar/blobdiff - src/create.c
tar: don't assume size of a sparse file chunk fits in size_t
[chaz/tar] / src / create.c
index 0a6bacf183aac19b32ccb8acff57dd5696b39d30..2ca1d6ee34ba342cf8431b88c52b2f5df8052295 100644 (file)
@@ -440,12 +440,6 @@ off_to_chars (off_t v, char *p, size_t s)
   return to_chars (v < 0, (uintmax_t) v, sizeof v, 0, p, s, "off_t");
 }
 
-bool
-size_to_chars (size_t v, char *p, size_t s)
-{
-  return to_chars (0, (uintmax_t) v, sizeof v, 0, p, s, "size_t");
-}
-
 bool
 time_to_chars (time_t v, char *p, size_t s)
 {
This page took 0.019844 seconds and 4 git commands to generate.