From df111bb0cf32bbe48718a5b77f8b9d9a7400d496 Mon Sep 17 00:00:00 2001
From: Samo Penic <samo.penic@gmail.com>
Date: Thu, 15 Aug 2019 06:52:41 +0000
Subject: [PATCH] Fix in printing the ulms

---
 src/shcomplex.c |    7 +++++--
 depcomp         |    6 +++---
 2 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/depcomp b/depcomp
index b39f98f..fc98710 100755
--- a/depcomp
+++ b/depcomp
@@ -1,9 +1,9 @@
 #! /bin/sh
 # depcomp - compile a program generating dependencies as side-effects
 
-scriptversion=2016-01-11.22; # UTC
+scriptversion=2013-05-30.07; # UTC
 
-# Copyright (C) 1999-2017 Free Software Foundation, Inc.
+# Copyright (C) 1999-2014 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -786,6 +786,6 @@
 # eval: (add-hook 'write-file-hooks 'time-stamp)
 # time-stamp-start: "scriptversion="
 # time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC0"
+# time-stamp-time-zone: "UTC"
 # time-stamp-end: "; # UTC"
 # End:
diff --git a/src/shcomplex.c b/src/shcomplex.c
index 8492609..4090346 100644
--- a/src/shcomplex.c
+++ b/src/shcomplex.c
@@ -1,6 +1,7 @@
 /* vim: set ts=4 sts=4 sw=4 noet : */
 #include<math.h>
 #include<stdlib.h>
+#include<string.h>
 #include<gsl/gsl_complex.h>
 #include<gsl/gsl_complex_math.h>
 #include<gsl/gsl_sf_legendre.h>
@@ -120,12 +121,14 @@
 char *Ulm2Complex2String(ts_vesicle *vesicle){
 	ts_int i,j;
 	char *strng=(char *)calloc(5000, sizeof(char));
+	char tmpstrng[255];
 	for(i=0;i<vesicle->sphHarmonics->l;i++){
     		for(j=i;j<2*i+1;j++){
-			sprintf(strng,"%e ", gsl_complex_abs2(vesicle->sphHarmonics->ulmComplex[i][j]));
+			sprintf(tmpstrng,"%e ", gsl_complex_abs2(vesicle->sphHarmonics->ulmComplex[i][j]));
+			strcat(strng,tmpstrng);
     		}
 	}
-	sprintf(strng,"\n");
+	//strcat(strng,"\n");
 
 	return strng;
 }

--
Gitblit v1.9.3