From Stig Bjorlykke:

* Fixed a typo in README.developer


svn path=/trunk/; revision=20132
This commit is contained in:
Stephen Fisher 2006-12-14 00:05:03 +00:00
parent daa21601b2
commit 8b8b648ad6
1 changed files with 1 additions and 1 deletions

View File

@ -419,7 +419,7 @@ instead write the code as
static void
foo_to_str(char **buffer, ...
#define MAX_BUFFER x
*buffer=ep_alloc(x);
*buffer=ep_alloc(MAX_BUFFER);
<fill in *buffer>
}
...