should be TODO
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-03-09 03:37:28 +09:00
commit 9ac1db3cf6
Signed by: nishi
GPG key ID: 27EF69B208EB9343
2 changed files with 3 additions and 3 deletions

View file

@ -13,9 +13,9 @@ unsigned int crc32(void* input, unsigned int len) {
i = 0;
crc = 0xFFFFFFFF;
while(i < len) {
byte = message[i]; // Get next byte.
byte = message[i]; /* Get next byte. */
crc = crc ^ byte;
for(j = 7; j >= 0; j--) { // Do eight times.
for(j = 7; j >= 0; j--) { /* Do eight times. */
mask = -(crc & 1);
crc = (crc >> 1) ^ (0xEDB88320 & mask);
}

View file

@ -223,7 +223,7 @@ void simple_body(FILE* out, const char* top, const char* title, xl_node_t* body)
free(nodes);
}
/* should this be default behavior? */
/* TODO: should this be default behavior? */
if(strcmp(top, "") != 0 && title != NULL) project_desc = (char*)title;
if((nodes = xl_get_path(skinconf->root, "copyright.year")) != NULL) {