From: Panu Matilainen Date: Fri, 26 Oct 2007 09:08:34 +0000 (+0300) Subject: Fix invalid ifdef-outed code breaking syntax highlighting :) X-Git-Tag: rpm-4.6.0-rc1~1571 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bbce1581029dddbdcdd76a0b969fd8a8fe5614bf;p=platform%2Fupstream%2Frpm.git Fix invalid ifdef-outed code breaking syntax highlighting :) --- diff --git a/lib/rpminstall.c b/lib/rpminstall.c index df15f92..1f6e1ca 100644 --- a/lib/rpminstall.c +++ b/lib/rpminstall.c @@ -718,10 +718,10 @@ int rpmErase(rpmts ts, struct rpmInstallArguments_s * ia, (void) rpmtsSetFlags(ts, ia->transFlags); #ifdef NOTYET /* XXX no callbacks on erase yet */ - { int notifyFlags; + { int notifyFlags, xx; notifyFlags = ia->eraseInterfaceFlags | (rpmIsVerbose() ? INSTALL_LABEL : 0 ); xx = rpmtsSetNotifyCallback(ts, - rpmShowProgress, (void *) ((long)notifyFlags) + rpmShowProgress, (void *) ((long)notifyFlags)); } #endif