From 97b937f0156d381fed539282d0eb57e3a898aad3 Mon Sep 17 00:00:00 2001
From: Tor Hveem <tor@hveem.no>
Date: Thu, 26 Mar 2015 13:45:53 +0100
Subject: [PATCH] Use correct pointer string

---
 js/models.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/js/models.js b/js/models.js
index 7521764..6860918 100644
--- a/js/models.js
+++ b/js/models.js
@@ -461,7 +461,7 @@ models.service('models', ['$rootScope', '$filter', function($rootScope, $filter)
         if (this.version !== null && parseInt(this.version.charAt(0)) >= 1) {
             // pointers are being validated, they're more reliable than
             // fullName (e.g. if fullName contains spaces)
-            return activeBuffer.id;
+            return "0x"+activeBuffer.id;
         } else {
             return activeBuffer.fullName;
         }