Fix some jekyll/liquid template idiocy

This commit is contained in:
R. Tyler Croy 2012-05-08 12:52:30 -07:00
parent 6073e222be
commit 48a8b0ebbf
1 changed files with 2 additions and 4 deletions

View File

@ -58,11 +58,9 @@ operations that work with the entire block perform pointer arithmetic to
calculate the appropriate starting address for the block. For example, here's
the `sdsfree` implementation:
{% highlight c %}
void sdsfree(sds s) { /* sds == char * */
void sdsfree(sds s) { /* sds == char * */
free(s - sizeof(struct sdshdr));
}
{% endhighlight %}
}
I have two reasons for picking on this specific code, and they were both in the
form of gnarly core dumps I've spent resolving the past couple days. If at