Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 200151 | Differences between
and this patch

Collapse All | Expand All

(-)rekall-2.4.6/libs/el32/hash.cpp (-1 / +1 lines)
Lines 145-151 Link Here
145
			/* otherwise use just the tag (pretty useless	*/
145
			/* otherwise use just the tag (pretty useless	*/
146
			/* but so what, not a common case).		*/
146
			/* but so what, not a common case).		*/
147
			if ((key.tag->flags & TF_SHARED) == 0)
147
			if ((key.tag->flags & TF_SHARED) == 0)
148
				hval	= (int)key.val.shared ;
148
				hval	= (long)key.val.shared ;
149
			else	hval	= key.tag->tag ;
149
			else	hval	= key.tag->tag ;
150
			break	;
150
			break	;
151
	}
151
	}
(-)rekall-2.4.6/libs/kbase/kb_configdlg.cpp (-1 / +1 lines)
Lines 312-318 Link Here
312
	old.clear () ;
312
	old.clear () ;
313
313
314
	QListViewItem	*item	= m_lvConfigs->firstChild() ;
314
	QListViewItem	*item	= m_lvConfigs->firstChild() ;
315
	uint		ident	= 0x000ffffff & (uint)(void *)item ;
315
	uint		ident	= 0x000ffffff & (ulong)(void *)item ;
316
316
317
	while (item != 0)
317
	while (item != 0)
318
	{
318
	{
(-)rekall-2.4.6/libs/kbase/kb_overridedlg.cpp (-1 / +1 lines)
Lines 360-366 Link Here
360
	old.clear () ;
360
	old.clear () ;
361
361
362
	QListViewItem	*item	= m_lvOverride->firstChild() ;
362
	QListViewItem	*item	= m_lvOverride->firstChild() ;
363
	uint		ident	= 0x000ffffff & (uint)(void *)item ;
363
	uint		ident	= 0x000ffffff & (ulong)(void *)item ;
364
364
365
	while (item != 0)
365
	while (item != 0)
366
	{
366
	{
(-)rekall-2.4.6/libs/kbase/kb_stack.cpp (-2 / +2 lines)
Lines 456-462 Link Here
456
				this,
456
				this,
457
				SLOT	(setCurrentPage(int)),
457
				SLOT	(setCurrentPage(int)),
458
				0,
458
				0,
459
				(int)p
459
				(long)p
460
			)	;
460
			)	;
461
		else
461
		else
462
			raiser->insertItem
462
			raiser->insertItem
Lines 464-470 Link Here
464
				this,
464
				this,
465
				SLOT	(setCurrentPage(int)),
465
				SLOT	(setCurrentPage(int)),
466
				0,
466
				0,
467
				(int)p
467
				(long)p
468
			)	;
468
			)	;
469
469
470
	)
470
	)

Return to bug 200151