Remove common

This commit is contained in:
Quentin Rameau
2019-02-19 05:33:04 +01:00
parent 21fcbc004e
commit 8d5e2b3a40
5 changed files with 21 additions and 28 deletions
+4 -2
View File
@@ -26,8 +26,10 @@ newpage(WebKitWebPage *page)
{
Page *p;
if (!(p = calloc(1, sizeof(Page))))
die("Cannot malloc!\n");
if (!(p = calloc(1, sizeof(Page)))) {
fputs("Cannot malloc!\n", stderr);
exit(1);
}
p->next = pages;
pages = p;