Fix a typo in the printf
authorRon Dreslinski <rdreslin@umich.edu>
Mon, 9 Oct 2006 21:30:54 +0000 (17:30 -0400)
committerRon Dreslinski <rdreslin@umich.edu>
Mon, 9 Oct 2006 21:30:54 +0000 (17:30 -0400)
--HG--
extra : convert_revision : bfa8ffae0a9bef25ceca168ff376ba816abf23f3

src/mem/cache/cache_impl.hh

index 7764b97c16ee7f103923e08c7e31705dae724057..bde7ac04bf92f60eeb75e11f2f63224e08955f24 100644 (file)
@@ -458,7 +458,7 @@ Cache<TagStore,Buffering,Coherence>::snoop(Packet * &pkt)
     CacheBlk::State new_state;
     bool satisfy = coherence->handleBusRequest(pkt,blk,mshr, new_state);
     if (satisfy) {
-        DPRINTF(Cache, "Cache snooped a %c request and now supplying data,"
+        DPRINTF(Cache, "Cache snooped a %s request and now supplying data,"
                 "new state is %i\n",
                 pkt->cmdString(), new_state);
 
@@ -466,7 +466,7 @@ Cache<TagStore,Buffering,Coherence>::snoop(Packet * &pkt)
         respondToSnoop(pkt, curTick + hitLatency);
         return;
     }
-    if (blk) DPRINTF(Cache, "Cache snooped a %c request, new state is %i\n",
+    if (blk) DPRINTF(Cache, "Cache snooped a %s request, new state is %i\n",
                      pkt->cmdString(), new_state);
     tags->handleSnoop(blk, new_state);
 }
@@ -685,14 +685,14 @@ Cache<TagStore,Buffering,Coherence>::snoopProbe(PacketPtr &pkt)
         CacheBlk::State new_state = 0;
         bool satisfy = coherence->handleBusRequest(pkt,blk,mshr, new_state);
         if (satisfy) {
-            DPRINTF(Cache, "Cache snooped a %c request and now supplying data,"
+            DPRINTF(Cache, "Cache snooped a %s request and now supplying data,"
                     "new state is %i\n",
                     pkt->cmdString(), new_state);
 
             tags->handleSnoop(blk, new_state, pkt);
             return hitLatency;
         }
-        if (blk) DPRINTF(Cache, "Cache snooped a %c request, new state is %i\n",
+        if (blk) DPRINTF(Cache, "Cache snooped a %s request, new state is %i\n",
                      pkt->cmdString(), new_state);
         tags->handleSnoop(blk, new_state);
         return 0;