hmml_to_html.c: Fix typo in GenerateTopicColours()
This commit is contained in:
parent
f9bebe2924
commit
d82e665310
|
@ -1270,8 +1270,8 @@ GenerateTopicColours(char *Topic, char *TopicsDir)
|
|||
char *TopicsBuffer;
|
||||
// TODO(matt): Consider (optionally) pulling this path from the config
|
||||
char TopicsPath[255];
|
||||
CopyString(TopicsPath, "%s/cinera_topcs.css", TopicsDir);
|
||||
if((TopicsFile = fopen("cinera_topics.css", "a+")))
|
||||
CopyString(TopicsPath, "%s/cinera_topics.css", TopicsDir);
|
||||
if((TopicsFile = fopen(TopicsPath, "a+")))
|
||||
{
|
||||
fseek(TopicsFile, 0, SEEK_END);
|
||||
int TopicsLength = ftell(TopicsFile);
|
||||
|
|
Loading…
Reference in New Issue