summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-04-23 04:42:16 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:38:30 -0400
commitece13a8cf10e9afb576139411f450d8b37ec8e65 (patch)
treed77120b7ae2451deb64aada04509e38993572c73
parent8c6158be40624614ff1139d325ca9a54a91e8581 (diff)
downloadfork-ledger-ece13a8cf10e9afb576139411f450d8b37ec8e65.tar.gz
fork-ledger-ece13a8cf10e9afb576139411f450d8b37ec8e65.tar.bz2
fork-ledger-ece13a8cf10e9afb576139411f450d8b37ec8e65.zip
Stubbed out an assert.
-rw-r--r--util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.cc b/util.cc
index 4ad71be9..bda2eba4 100644
--- a/util.cc
+++ b/util.cc
@@ -79,7 +79,7 @@ string abbreviate(const string& str, unsigned int width,
if (len <= width)
return str;
- assert(width < 4095);
+ //assert(width < 4095);
char buf[4096];