Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

fogcreek shellext: fix warning when compiling with VS 2010

Changeset e168a84b60ef

Parent cddc11539e1a

by David Golub

Changes to one file · Browse files at e168a84b60ef Showing diff from parent cddc11539e1a Diff from another changeset...

 
66
67
68
69
 
70
71
72
 
66
67
68
 
69
70
71
72
@@ -66,7 +66,7 @@
  rev_string[ix * 2] = hexval[(revhash[ix] >> 4) & 0xf];   rev_string[ix * 2 + 1] = hexval[revhash[ix] & 0xf];   } - rev_string[sizeof(rev_string)] = 0; + rev_string[HASH_LENGTH * 2] = 0;   return rev_string;  }