Fixed a bunch of messy over 80 char lines

This commit is contained in:
2026-05-04 08:29:43 -05:00
parent 6d9e2dd3e1
commit 0e94c1fa6d
54 changed files with 273 additions and 841 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ errorret_t assetInitLinux(void) {
// Ensure combined length does not exceed ASSET_FILE_PATH_MAX
size_t syslen = strlen(ASSET.platform.systemPath);
size_t slashlen = 1; // for '/'
size_t max_temp = ASSET_FILE_PATH_MAX - syslen - slashlen - 1; // -1 for null terminator
size_t max_temp = ASSET_FILE_PATH_MAX - syslen - slashlen - 1;
if(strlen(temp) > max_temp) {
temp[max_temp] = '\0';
}
+1 -1
View File
@@ -33,7 +33,7 @@ errorret_t networkLinuxInit();
errorret_t networkLinuxUpdate();
/**
* Returns true Linux uses the OS network stack which is always available.
* Returns true, Linux uses the OS network stack which is always available.
*
* @return true
*/