Update error message to make it more comprensible

This commit is contained in:
Gregory John Casamento 2021-09-29 10:56:39 -04:00
parent 6101f124b8
commit f5e6960ecb
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2021-09-29 Gregory John Casamento <greg.casamento@gmail.com>
* TextConverters/RTF/RTFConsumer.m: Improve error message for
when a field being added to the RTF document is NULL.
2021-09-29 Gregory John Casamento <greg.casamento@gmail.com>
* Headers/AppKit/NSComboBox.h: Add @optional to protocol

View file

@ -1379,7 +1379,7 @@ void GSRTFaddField (void *ctxt, int start, const char *inst)
if (inst == NULL)
{
NSLog(@"inst is NULL");
NSLog(@"RTF add field content is NULL");
return;
}