mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
23 lines
639 B
Plaintext
23 lines
639 B
Plaintext
From 179e15712781aec51684ff16eb2ec5580ac393f2 Mon Sep 17 00:00:00 2001
|
|
From: Philippe Houdoin <philippe.houdoin@gmail.com>
|
|
Date: Mon, 3 Jul 2017 18:25:04 +0000
|
|
Subject: Fix build under x86_64
|
|
|
|
|
|
diff --git a/src/TesseractTranslator.cpp b/src/TesseractTranslator.cpp
|
|
index b181d50..1f46e1c 100644
|
|
--- a/src/TesseractTranslator.cpp
|
|
+++ b/src/TesseractTranslator.cpp
|
|
@@ -66,7 +66,7 @@ int32 monitor_thread(void *data)
|
|
ETEXT_DESC *monitor = cookie->monitor;
|
|
|
|
char mess_id[64];
|
|
- sprintf(mess_id, "TESS#%X",(unsigned int)(data));
|
|
+ sprintf(mess_id, "TESS#%p",data);
|
|
|
|
int lastprogress = monitor->progress;
|
|
int frame = 0;
|
|
--
|
|
2.12.2
|
|
|