mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
creport: fix a bunch of trivial errors
This commit is contained in:
parent
fc36429b99
commit
71e87e9e35
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
|
#include <cstring>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <switch.h>
|
#include <switch.h>
|
||||||
|
@ -30,7 +31,7 @@ void CrashReport::SaveReport() {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Open report file. */
|
/* Open report file. */
|
||||||
snprintf(report_path, sizeof(report_path) - 1, "sdmc:/atmosphere/crash reports/%016lx_%016lx.log", timestamp, process_info.title_id),
|
snprintf(report_path, sizeof(report_path) - 1, "sdmc:/atmosphere/crash reports/%016lx_%016lx.log", timestamp, process_info.title_id);
|
||||||
FILE *f_report = fopen(report_path, "w");
|
FILE *f_report = fopen(report_path, "w");
|
||||||
if (f_report == NULL) {
|
if (f_report == NULL) {
|
||||||
return;
|
return;
|
||||||
|
@ -214,7 +215,7 @@ bool CrashReport::IsAddressReadable(u64 address, u64 size, MemoryInfo *o_mi) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GetCurrentTime(u64 *out) {
|
bool CrashReport::GetCurrentTime(u64 *out) {
|
||||||
*out = 0;
|
*out = 0;
|
||||||
|
|
||||||
/* Verify that pcv isn't dead. */
|
/* Verify that pcv isn't dead. */
|
||||||
|
|
Loading…
Reference in a new issue