From 4bda3653b0b3a270acdf643cf4918a97dbf147c5 Mon Sep 17 00:00:00 2001 From: Michael Vrable Date: Wed, 18 Jul 2007 14:31:32 -0700 Subject: [PATCH] Rename format.{cc,h} -> util.{cc,h}. --- Makefile | 2 +- scandir.cc | 2 +- statcache.cc | 2 +- format.cc => util.cc | 0 format.h => util.h | 0 5 files changed, 3 insertions(+), 3 deletions(-) rename format.cc => util.cc (100%) rename format.h => util.h (100%) diff --git a/Makefile b/Makefile index e947b47..965d277 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ CXXFLAGS=-O -Wall -D_FILE_OFFSET_BITS=64 $(DEBUG) \ `pkg-config --cflags $(PACKAGES)` -DLBS_VERSION=`cat version` LDFLAGS=$(DEBUG) -ltar `pkg-config --libs $(PACKAGES)` -SRCS=format.cc localdb.cc ref.cc scandir.cc sha1.cc statcache.cc store.cc +SRCS=localdb.cc ref.cc scandir.cc sha1.cc statcache.cc store.cc util.cc OBJS=$(SRCS:.cc=.o) lbs : $(OBJS) diff --git a/scandir.cc b/scandir.cc index 5b3caaa..d398eee 100644 --- a/scandir.cc +++ b/scandir.cc @@ -23,11 +23,11 @@ #include #include -#include "format.h" #include "localdb.h" #include "store.h" #include "sha1.h" #include "statcache.h" +#include "util.h" using std::list; using std::string; diff --git a/statcache.cc b/statcache.cc index 5a8d26c..86886c0 100644 --- a/statcache.cc +++ b/statcache.cc @@ -30,9 +30,9 @@ #include #include -#include "format.h" #include "ref.h" #include "statcache.h" +#include "util.h" using std::list; using std::map; diff --git a/format.cc b/util.cc similarity index 100% rename from format.cc rename to util.cc diff --git a/format.h b/util.h similarity index 100% rename from format.h rename to util.h -- 2.20.1