mirror of
https://github.com/EnergyMech/energymech.git
synced 2025-12-29 16:14:43 +00:00
* Added: $guid to esay variables
* Added: New bigsay font: spider, use with .bigsay -spider cowabunga! * Fixed: Error in printing pointers would make lots of debug output go missing * Changed: Debug output (./energymech -d -o <file>) now appends instead of truncating * Fixed: Botnet auth messages now propagate correctly throughout the botnet
This commit is contained in:
@@ -427,15 +427,25 @@
|
||||
*/
|
||||
#ifdef PTSIZE_32BIT
|
||||
|
||||
#if defined(__GNUC__)
|
||||
#define mx_ptr void*
|
||||
#define mx_pfmt "%p"
|
||||
#else
|
||||
#define mx_ptr unsigned int
|
||||
#define mx_pfmt "%.8x"
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef PTSIZE_64BIT
|
||||
|
||||
#if defined(__GNUC__)
|
||||
#define mx_ptr void*
|
||||
#define mx_pfmt "%p"
|
||||
#else
|
||||
#define mx_ptr long long
|
||||
#define mx_pfmt "%.16Lx"
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user