fix: add newline padding to missing API key error message in auth.h

This commit is contained in:
retoor 2025-01-04 16:04:14 +00:00
parent 0d8082531e
commit af26cb29b3

2
auth.h
View File

@ -19,6 +19,6 @@ const char * resolve_api_key(){
{
return api_key;
}
fprintf(stderr, "There is no API key configured in environment.");
fprintf(stderr, "\nThere is no API key configured in environment.\n");
return "";
}