I think you should put the higher half of XMM0 into the lower half of XMM1 and use RAX = 2 since you're using two XMM registers. printf reads lower halfs.
one way;
movapd xmm1,xmm0 ;copy
psrldq xmm1,8 ;shift right by 8 bytes
mov rdi,fmt5
mov rax,2
call printf
There are many others but the point is to get the higher xmm0 into lower xmm1 to get the second value.