Fixing style typo.

This commit is contained in:
Marco Lizza
2015-01-30 09:23:30 +01:00
parent 23cc8a5384
commit a54bde7294
+1 -1
View File
@@ -9,7 +9,7 @@
// A simple structure to keep trace of the string length as long as its data // A simple structure to keep trace of the string length as long as its data
// (including the null-terminator) // (including the null-terminator)
typedef struct { typedef struct {
char *buffer; char* buffer;
int length; int length;
} String; } String;